/* Base styles - Variables and core styling */
:root {
	--color-bg: #000000;
	--color-accent: #309bff;
	--color-secondary: #8234ff;
	--neon-red: #FF073A;
	--neon-purple: #C147E9;
	--neon-cyan: #00F5FF;
	--neon-pink: #FF1493;
	--dark-bg: #0A0A0F;
	--darker-bg: #050508;
	--accent-yellow: #FFD700;
	--text-light: #FFFFFF;
	--glass-bg: rgba(255, 255, 255, 0.05);
}

body {
	font-family: Arial, sans-serif;
	background-color: var(--color-bg);
	color: #fff;
	margin: 0;
	padding: 0;
	padding-bottom: 20px;
}

/* Remove underlines from all links including visited ones */
a {
	text-decoration: none;
}

a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

a:active {
	text-decoration: none;
}

/* Common gradient text styles */
.gradient-text,
.gradient-text-alt {
	font-family: "Open Sans", sans-serif;
	background: linear-gradient(
		90deg,
		var(--color-accent) 0%,
		var(--color-secondary) 100%
	);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* Back button component */
.back-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	text-decoration: none;
	padding: 12px 20px;
	margin: 20px;
	border-radius: 6px;
	transition: all 0.2s ease;
	font-weight: 400;
	font-size: 14px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.back-button:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateX(-2px);
}

.back-button::before {
	content: "←";
	font-size: 16px;
}

/* Mobile back button adjustments */
@media (max-width: 768px) {
	.back-button {
		margin: 15px;
		padding: 10px 16px;
		font-size: 13px;
	}
}
