@font-face {
	font-family: 'Roboto';
	src: url('/assets/static/Roboto-Italic.woff2') format('woff2'),
		url('/assets/static/Roboto-Italic.woff') format('woff');
	font-weight: normal;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Roboto';
	src: url('/assets/static/Roboto-Regular.woff2') format('woff2'),
		url('/assets/static/Roboto-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Roboto', 'Segoe UI', 'Helvetica', 'Arial', sans-serif;
	background-color: #0b0e11;
	color: #c2c9cb;
	line-height: 1;
}

h1, h2, p, button, a {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
}

button {
	background: none;
	cursor: pointer;
}

a {
	text-decoration: none;
	color: inherit;
}

/* Header and Navigation */
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2rem 3rem;
}

nav h1 {
	color: white;
	font-size: 4rem;
	letter-spacing: -4px;
	font-family: "Inversionz";
}

.auth-links {
	display: flex;
	align-items: baseline;
	gap: 1rem;
	color: white;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.05em;
}

.auth-links a {
	text-decoration: none;
}

#login-link {
	color: #5992f7;
}

#signup-link {
	color: red;
}

.auth-links a:hover {
	color: yellow;
}

.auth-links a:hover {
	opacity: 0.8;
}

.auth-links span {
	color: #444;
	font-weight: normal;
	font-size: 1.0rem;
}

/* Main Content */
main {
	height: 100vh;
	position: relative;
}

.hero {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: white;
}

.hero h2 {
	font-size: 3.5rem;
	font-weight: 300;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.hero p {
	font-size: 1.5rem;
	font-weight: 300;
	opacity: 0.5;
	letter-spacing: 0.02em;
	font-weight: 100;
	text-align: right;
}

.hero-buttons {
	position: absolute;
	bottom: 10vh;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 1.5rem;
	font-weight: 400;
}

.hero-buttons button {
	border: none;
	padding: 0.75rem 1.5rem;
	font-size: 0.875rem;
	font-weight: 500;
	border-radius: 6px;
	cursor: pointer;
	transition: background-color 0.2s ease;
	color: black;
	height: 48px;
	white-space: nowrap;
}

.hero-buttons button:first-child {
	background-color: magenta;
}

.hero-buttons button:first-child:hover {
	background-color: #cc00cc;
}

.hero-buttons button:last-child {
	background-color: lime;
}

.hero-buttons button:last-child:hover {
	background-color: #ccff32;
}

/* Logo */
.logo-aside {
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	z-index: 100;
	opacity: 0.5;
}

::selection {
	background-color: red;
}

@keyframes confettiFall {
	to {
		transform: translateY(100vh) rotate(360deg);
		opacity: 0;
	}
}

@keyframes modalSpin {
	from {
		transform: translate(-50%, -50%) rotate(0deg) scale(0);
		opacity: 0;
	}
	to {
		transform: translate(-50%, -50%) rotate(720deg) scale(1);
		opacity: 1;
	}
}

@keyframes woosh-out {
	from { opacity: 1; transform: translateY(0); filter: blur(0); }
	to { opacity: 0; transform: translateY(-80px) scale(0.9); filter: blur(15px); }
}

@media (max-width: 767px) {
	.logo-aside {
		display: none;
	}
}
