@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap");
@font-face {
  font-family: "RustD";
  src: url("/uploads/RustD.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	height: 100vh;
	background: linear-gradient(135deg, #000000 0%, #380000 50%, #000000 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Inter", sans-serif;
	overflow: hidden;
	position: relative;
	color: white;
}

body::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 30% 20%, rgba(139, 0, 255, 0.08) 0%, transparent 50%),
				radial-gradient(circle at 70% 80%, rgba(0, 255, 255, 0.06) 0%, transparent 50%);
	pointer-events: none;
	z-index: 1;
}

.container {
	text-align: center;
	z-index: 2;
	position: relative;
}

.logo {
	margin-bottom: 70px;
}

.logo h1 {
	font-size: 5rem;
	font-weight: 700;
	background: linear-gradient(90deg, #ffffff, #ffae64, #ffffff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 0 0 50px rgba(192, 38, 211, 0.6);
	font-family: "RustD";
	margin-bottom: 11px;
	cursor: default;
}

.subtitle {
	color: #a1a1aa;
	font-size: 10px;
	margin-top: -12px;
	letter-spacing: 6px;
	text-transform: uppercase;
	cursor: default;
}

.buttons {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 440px;
	margin: 0 auto;
}

.btn {
	padding: 20px 45px;
	font-size: 1.35rem;
	font-weight: 600;
	color: white;
	background: rgb(0 0 0 / 44%);
	border: 2px solid rgb(42 42 42 / 45%);
	border-radius: 18px;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: blur(12px);
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	position: relative;
	overflow: hidden;
}

.btn:hover {
	transform: translateY(-8px) scale(1.04);
	background: rgb(0 0 0);
	border-color: #720000;
	box-shadow: 0 25px 50px rgb(211 38 38 / 35%);
}

.btn:active {
	transform: scale(0.97);
}

.btn::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -100%;
	width: 50%;
	height: 200%;
	background: linear-gradient(
		120deg,
		transparent,
		rgba(255,255,255,0.35),
		transparent
	);
	transform: skewX(-25deg);
	transition: 0.7s;
}

.btn:hover::before {
	left: 150%;
}

.footer {
	margin-top: 90px;
	color: #52525b;
	font-size: 0.95rem;
}