.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

:root {
	--font-orbitron: 'Orbitron', sans-serif;
	--font-plus-jakarta-sans: 'Plus Jakarta Sans', sans-serif;
}

@layer base {
	body {
		font-family: var(--font-plus-jakarta-sans);
	}
	h1,
	h2,
	h3,
	h4,
	h5,
	h6,
	button {
		font-family: var(--font-orbitron);
	}
}

@layer utilities {
	.btn-gradient-wrapper {
		background: linear-gradient(90deg, #113be1 0%, #00c2ff 100%);
	}
	.btn-gradient-wrapper:hover button {
		background: linear-gradient(90deg, #113be1 0%, #00c2ff 100%);
		color: white;
	}
	.btn-gradient-wrapper:hover button svg path {
		stroke: white;
	}
	.btn-submit-wrapper {
		background: linear-gradient(90deg, #113be1 0%, #00c2ff 100%);
	}
	input.error {
		border-color: rgba(239, 68, 68, 0.5);
	}
	input.error:focus {
		border-color: rgba(239, 68, 68, 0.8);
	}
	.footer-cta-wrapper:hover button {
		background: linear-gradient(90deg, #113be1 0%, #00c2ff 100%);
		color: white;
	}
	.footer-cta-wrapper:hover button img {
		filter: brightness(0) invert(1);
	}
	.footer-copyright a:hover {
		background: linear-gradient(90deg, #113be1 0%, #00c2ff 100%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
	}
	.queue-number-display {
		background: linear-gradient(90deg, #113be1 0%, #00c2ff 100%);
		box-shadow: 0 0 15px rgba(17, 59, 225, 0.5);
	}
	.share-button:hover {
		background: rgba(255, 255, 255, 0.2);
		border-color: rgba(147, 51, 234, 0.5);
	}
	.success-modal {
		background: rgba(17, 24, 39, 0.9);
		border: 1px solid rgba(147, 51, 234, 0.5);
		box-shadow: 0 0 20px rgba(147, 51, 234, 0.3);
	}
	.beta-tag {
		background: linear-gradient(90deg, #113be1 0%, #00c2ff 100%);
	}
	.legal-content p {
		margin-bottom: 2rem;
		line-height: 1.7;
	}
	.legal-content ul {
		list-style-type: disc;
		margin-bottom: 2rem;
		padding-left: 1.5rem;
	}
	.legal-content ol {
		list-style-type: decimal;
		margin-bottom: 2rem;
		padding-left: 1.5rem;
	}
	.legal-content li {
		margin-bottom: 0.5rem;
	}
	.legal-content h2 {
		margin-left: 2rem;
		text-indent: -1rem;
	}
	.legal-content h3 {
		margin-left: 3rem;
		text-indent: -1rem;
	}
}

.border-beam {
	position: absolute;
	width: 50%;
	height: 2px;
	background: linear-gradient(90deg, transparent, #6366f1, #7dd3fc, transparent);
	animation: borderBeam 3s linear infinite;
	pointer-events: none;
	z-index: 1;
}

.border-beam.top {
	top: -1px;
	left: -50%;
}

.border-beam.bottom {
	bottom: -1px;
	top: auto;
	left: -50%;
	animation-delay: 1.5s;
}

@keyframes borderBeam {
	0% {
		left: -50%;
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		left: 100%;
		opacity: 0;
	}
}

.section-with-video video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.section-with-video::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(3, 7, 18, 0.7);
	z-index: 1;
}

#hero::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 200px;
	background: linear-gradient(to top, rgba(3, 7, 18, 1), rgba(3, 7, 18, 0));
	z-index: 2;
	pointer-events: none;
}

#early-access::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 200px;
	background: linear-gradient(to bottom, rgba(3, 7, 18, 1), rgba(3, 7, 18, 0));
	z-index: 2;
	pointer-events: none;
}

#early-access::after {
	background: linear-gradient(to top, rgba(3, 7, 18, 0.9) 0%, rgba(3, 7, 18, 0.7) 100%);
}

.honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.success-modal-overlay {
	display: none;
}

.success-modal-overlay.show {
	display: flex;
}
