@font-face {
	font-family: 'Outrunner';
	src: url('../Fonts/AXROutrunner.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Technology';
	src: url('../Fonts/Technology.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

.Landing_Page {
	min-height: 100vh;
	background:
		radial-gradient(circle at top left, rgba(0, 240, 240, 0.18), transparent 30%),
		radial-gradient(circle at 85% 20%, rgba(255, 190, 60, 0.16), transparent 26%),
		linear-gradient(160deg, #07131d 0%, #091722 42%, #05080d 100%);
	color: var(--color-white);
	font-family: Arial, sans-serif;
}

.Landing_Page::before {
	content: '';
	position: fixed;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 72px 72px;
	opacity: 0.35;
	mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 85%);
}

.Landing_Page::after {
	content: '';
	position: fixed;
	left: 50%;
	top: 18vh;
	transform: translateX(-50%);
	width: min(70vw, 980px);
	height: min(70vw, 980px);
	background: radial-gradient(circle, rgba(0, 250, 250, 0.08) 0%, transparent 62%);
	pointer-events: none;
	filter: blur(8px);
}

.Landing_Nav_Fill {
	grid-column: 3;
}

.Landing_Shell {
	position: relative;
	z-index: 1;
	padding: 12vh 6vw 5.8rem;
	min-height: calc(100vh - 3.5rem);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 0;
}

.Landing_Hero,
.Landing_Panel {
	position: relative;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	background: rgba(5, 9, 16, 0.58);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 20px 80px rgba(0, 0, 0, 0.35);
}

.Landing_Hero {
	padding: 1rem 1.35rem 0.8rem;
	border-radius: 28px;
	overflow: hidden;
}

.Landing_Hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 250, 250, 0.08), transparent 45%, rgba(255, 180, 0, 0.08));
	pointer-events: none;
}

.Landing_Kicker {
	font-family: 'Technology', Arial, sans-serif;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: var(--color-cyan);
	font-size: clamp(0.85rem, 1.2vw, 1rem);
	margin-bottom: 0.7rem;
}

.Landing_Title {
	font-family: 'Outrunner', 'Technology', Arial, sans-serif;
	font-size: clamp(4rem, 10vw, 8rem);
	line-height: 0.9;
	margin: 0;
	text-transform: uppercase;
	color: var(--color-white);
	text-shadow: 0 0 24px rgba(0, 250, 250, 0.18);
}

.Landing_Subtitle {
	max-width: 40rem;
	font-size: clamp(1.05rem, 1.6vw, 1.35rem);
	line-height: 1.6;
	color: var(--color-gray-bright);
	margin: 1.4rem 0 0;
}

.Landing_Next_Event {
	margin-top: 0;
	display: block;
	text-decoration: none;
	color: inherit;
	padding: 1.5rem 1.1rem 1.725rem;
	min-height: 15rem;
	border-radius: 16px;
	border: 2px solid rgba(0, 250, 250, 0.55);
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 250, 250, 0.05));
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
	transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
	cursor: pointer;
}

.Landing_Next_Event:hover,
.Landing_Next_Event:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(0, 250, 250, 0.9);
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.1),
		0 10px 28px rgba(0, 0, 0, 0.28);
}

.Landing_Next_Event_Header {
	text-align: center;
	font-family: Arial, sans-serif;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-size: 1.9rem;
	color: var(--Yellow_250);
	margin-bottom: 0.7rem;
}

.Landing_Next_Event_Days {
	text-align: center;
	font-family: Arial, sans-serif;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-cyan);
	font-size: clamp(1.9rem, 2.4vw, 2.2rem);
	margin-bottom: 0.4rem;
}

.Landing_Next_Event_Title {
	text-align: center;
	font-family: Arial, sans-serif;
	font-size: clamp(3.2rem, 5.2vw, 4.6rem);
	line-height: 1.05;
	width: 85%;
	margin: 0 auto;
	color: var(--color-white);
	text-shadow: 0 0 14px rgba(0, 250, 250, 0.22);
}

.Landing_Next_Event_Title .Title_Image_SVG {
	height: 1.3em;
	width: auto;
	max-width: 100%;
	display: block;
	margin: 0 auto;
}

.Landing_Next_Event_Title_Text {
	font-family: Arial, sans-serif;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

.Landing_Next_Event_Row {
	margin-top: 0.7rem;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.55rem;
	font-family: Arial, sans-serif;
	font-size: clamp(1.8rem, 2.2vw, 2rem);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--color-gray-light);
	text-align: center;
	flex-wrap: wrap;
}

.Landing_Next_Event_At {
	color: var(--color-gray);
}

.Landing_CTA_Row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin-top: 2rem;
}

.Landing_CTA {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.95rem 1.35rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.04);
	color: var(--color-white);
	text-decoration: none;
	font-family: 'Technology', Arial, sans-serif;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.Landing_CTA:hover {
	transform: translateY(-2px);
	border-color: rgba(0, 250, 250, 0.5);
	background: rgba(0, 250, 250, 0.08);
}

.Landing_CTA_Primary {
	background: linear-gradient(135deg, rgba(0, 250, 250, 0.18), rgba(255, 180, 0, 0.16));
	border-color: rgba(0, 250, 250, 0.4);
}

.Landing_Stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.8rem;
	margin-top: 2.25rem;
}

.Landing_Stat {
	padding: 1rem;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.Landing_Stat_Value {
	display: block;
	font-family: 'Technology', Arial, sans-serif;
	font-size: 1.25rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-white);
}

.Landing_Stat_Label {
	display: block;
	margin-top: 0.45rem;
	font-size: 0.98rem;
	color: var(--color-gray-light);
}

.Landing_Panel {
	padding: 0.8rem 1.35rem 0;
	border-radius: 24px;
}

.Landing_Link_Grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.9rem;
}

.Landing_Link_Card {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1.1rem 1rem;
	width: 100%;
	box-sizing: border-box;
	border-radius: 18px;
	text-decoration: none;
	color: inherit;
	font-family: 'Technology', Arial, sans-serif;
	font-size: 1.15rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	cursor: pointer;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
	border: 1px solid rgba(255, 255, 255, 0.08);
	position: relative;
	overflow: hidden;
	transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.Landing_Link_Card::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(to bottom, var(--color-cyan), rgba(255, 180, 0, 0.85));
}

.Landing_Link_Card:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.18);
	background: linear-gradient(135deg, rgba(0, 250, 250, 0.08), rgba(255, 255, 255, 0.04));
}

.Landing_Footer {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0 6vw 2rem;
	font-size: 0.9rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-gray);
}

@media (max-width: 920px) {
	.Landing_Shell {
		padding-top: 10vh;
	}

	.Landing_Stats {
		grid-template-columns: 1fr;
	}

	.Landing_Footer {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 640px) {
	.Landing_Shell {
		padding-inline: 1rem;
		padding-top: 8.5rem;
		padding-bottom: 5.4rem;
	}

	.Landing_Hero,
	.Landing_Panel {
		border-radius: 20px;
	}

	.Landing_Title {
		font-size: clamp(3.1rem, 18vw, 5rem);
	}

	.Landing_Next_Event {
		padding: 1.2rem;
		min-height: 13.5rem;
	}

	.Landing_Next_Event_Title {
		font-size: clamp(2.7rem, 17.6vw, 3.6rem);
	}

	.Landing_CTA {
		width: 100%;
	}
}
