body {
	margin: 0;
	height: 100vh;

	background: #07070a;

	font-family: "Poppins", sans-serif;

	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding-left: 12vw;
}

#cursor {
	position: fixed;
	top: 0;
	left: 0;
	width: 32px;
	height: 32px;
	pointer-events: none;
	z-index: 99999;
	transform: translate3d(-50%, -50%, 0);
	will-change: transform;
}

* {
	cursor: none !important;
	user-select: none;
	-webkit-user-select: none;
}

.bg-camera {
	position: fixed;
	inset: 0;
	z-index: -2;
	overflow: hidden;
	background: #07070a;
}

.bg-camera video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;

	filter: blur(6px) brightness(0.35) contrast(1.1) saturate(1.2);

	transform: scale(1.12);
	will-change: transform;

	animation: breathe 10s ease-in-out infinite;
}

.bg-camera::after {
	content: "";
	position: absolute;
	inset: 0;

	background: radial-gradient(circle at center,
			transparent 35%,
			rgba(0, 0, 0, 0.35) 65%,
			rgba(0, 0, 0, 0.85) 100%);

	pointer-events: none;
}

.bg-camera::before {
	content: "";
	position: absolute;
	inset: 0;

	background: radial-gradient(circle at 30% 40%,
			rgba(255, 40, 40, 0.08),
			transparent 60%);

	mix-blend-mode: screen;
	opacity: 0.6;
	pointer-events: none;
}

@keyframes breathe {
	0% {
		transform: scale(1.05) translate(0px, 0px);
	}

	25% {
		transform: scale(1.07) translate(-6px, 4px);
	}

	50% {
		transform: scale(1.06) translate(4px, -5px);
	}

	75% {
		transform: scale(1.08) translate(-3px, -3px);
	}

	100% {
		transform: scale(1.05) translate(0px, 0px);
	}
}

.bg-red-overlay {
	position: fixed;
	inset: 0;
	z-index: -1;

	pointer-events: none;
}

.bg-red-overlay::before {
	content: "";
	position: absolute;
	inset: 0;

	background:
		radial-gradient(ellipse at 50% 18%,
			rgba(255, 40, 40, 0.22),
			transparent 80%),
		radial-gradient(ellipse at 15% 25%,
			rgba(255, 40, 40, 0.14),
			transparent 85%),
		radial-gradient(ellipse at 85% 25%,
			rgba(255, 40, 40, 0.14),
			transparent 85%),
		radial-gradient(ellipse at 50% 0%, rgba(255, 40, 40, 0.08), transparent 90%);

	mix-blend-mode: screen;
	opacity: 1;
}

.bg-red-overlay::after {
	content: "";
	position: absolute;
	inset: 0;

	background: linear-gradient(to bottom,
			rgba(0, 0, 0, 0.02) 0%,
			rgba(0, 0, 0, 0.15) 35%,
			rgba(0, 0, 0, 0.45) 70%,
			rgba(0, 0, 0, 0.75) 100%);

	mix-blend-mode: multiply;
}

.bg-resume-overlay {
	position: fixed;
	inset: 0;
	z-index: -1;

	pointer-events: none;
}

.bg-resume-overlay::before {
	content: "";
	position: absolute;
	inset: 0;

	background:
		radial-gradient(ellipse at 50% 18%,
			rgba(255, 40, 40, 0.14),
			transparent 80%),
		radial-gradient(ellipse at 15% 25%,
			rgba(255, 40, 40, 0.08),
			transparent 85%),
		radial-gradient(ellipse at 85% 25%,
			rgba(255, 40, 40, 0.08),
			transparent 85%),
		radial-gradient(ellipse at 50% 0%, rgba(255, 40, 40, 0.05), transparent 90%);

	mix-blend-mode: screen;
	opacity: 0.85;
}

.bg-resume-overlay::after {
	content: "";
	position: absolute;
	inset: 0;

	background: linear-gradient(to bottom,
			rgba(0, 0, 0, 0.02) 0%,
			rgba(0, 0, 0, 0.15) 35%,
			rgba(0, 0, 0, 0.45) 70%,
			rgba(0, 0, 0, 0.75) 100%);

	mix-blend-mode: multiply;
}

html,
body {
	height: 100%;
	overflow: hidden;
}

.top-hud {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 6vh;
	min-height: 60px;

	display: flex;
	align-items: center;
	justify-content: space-between;

	padding: 0 2.5%;
	z-index: 50;

	font-family: "Oxanium", sans-serif;
	color: rgb(255, 70, 70);
}

@media (orientation: landscape) and (max-height: 500px) {
	.top-hud {
		padding: 0 1.25%;
		height: 48px;
		min-height: 48px;
	}

	.hud-title {
		font-size: 16px;
		letter-spacing: 2px;
	}

	.back-button {
		width: 78px;
		height: 30px;
		min-height: 30px;
	}

	.download-button {
		width: 120px;
		height: 30px;
		min-height: 30px;
	}

	.back-cyber-button text,
	.download-button text {
		font-size: 14px;
	}

	.hud-bar {
		left: 1.25%;
		width: 97.5%;
	}
}

.hud-bar {
	position: absolute;
	bottom: 0;
	left: 2.5%;
	width: 95%;
	height: 1px;

	background: rgba(255, 70, 70, 0.8);
	box-shadow: 0 0 8px rgba(255, 70, 70, 0.4);
}

.hud-title {
	position: static;
	transform: none;
	font-size: 22px;
	letter-spacing: 4px;

	text-transform: uppercase;
	text-shadow: 0 0 6px rgba(255, 70, 70, 0.25);
}

.back-button {
	position: static;
	width: 110px;
	overflow: visible;
	height: 3.5vh;
	min-height: 40px;
}

.download-button {
	position: static;
	width: 170px;
	height: 3.5vh;
	min-height: 40px;
}

.back-cyber-button {
	width: 100%;
	height: 100%;
	cursor: pointer;
	display: block;
	overflow: visible;
	min-width: 100%;
}

.back-cyber-button text {
	font-family: "Oxanium", sans-serif;
	font-size: 20px;
	fill: rgb(0, 255, 255);
	letter-spacing: 0px;
	text-transform: uppercase;

	filter: drop-shadow(0 0 2px rgba(0, 255, 255, 0.35)) drop-shadow(0 0 6px rgba(0, 255, 255, 0.15));
}

.btn-shape-back {
	stroke: rgba(0, 255, 255, 0.9);
	fill: rgba(10, 10, 14, 0.25);
}

.back-cyber-button:hover .btn-shape-back {
	fill: rgba(10, 10, 14, 0.65);
}

.hidden {
	visibility: hidden !important;
	pointer-events: none !important;
}

#orientationOverlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	color: rgb(255, 70, 70);
	display: none;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-family: "Oxanium", sans-serif;
	font-size: 1.5rem;
	z-index: 1000;
	pointer-events: none;
}

#orientationOverlay p {
	margin-left: 10%;
	margin-right: 10%;
	padding: 1rem 2rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	backdrop-filter: blur(4px);
}

@media screen and (max-width: 768px) and (orientation: portrait) {
	#orientationOverlay {
		display: flex;
	}
}