:root {
	--sp-black: #050505;
	--sp-dark: #0b0b0b;
	--sp-card: #111111;
	--sp-green: #8be000;
	--sp-green-hover: #6fc700;
	--sp-white: #ffffff;
	--sp-light: #f5f5f5;
	--sp-grey: #cfcfcf;
	--sp-muted: #8f8f8f;
	--sp-border: rgba(255, 255, 255, 0.12);
	--sp-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
	--sp-container: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--sp-black);
	color: var(--sp-white);
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.6;
	padding-bottom: 68px;
}

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

img {
	display: block;
	max-width: 100%;
	height: auto;
}

.sp-container {
	width: min(100% - 32px, var(--sp-container));
	margin-inline: auto;
}

.sp-skip-link,
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.sp-skip-link:focus {
	z-index: 9999;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: var(--sp-green);
	color: var(--sp-black);
	font-weight: 800;
}

.sp-site-header {
	position: sticky;
	z-index: 1000;
	top: 0;
	background: rgba(5, 5, 5, 0.94);
	border-bottom: 1px solid var(--sp-border);
	backdrop-filter: blur(18px);
}

.sp-site-header.is-scrolled {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.sp-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 76px;
	gap: 18px;
}

.sp-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: max-content;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
}

.sp-brand-mark {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 2px solid var(--sp-green);
	border-radius: 8px;
	color: var(--sp-green);
	font-size: 18px;
	line-height: 1;
	box-shadow: 0 0 24px rgba(139, 224, 0, 0.25);
}

.sp-brand-text {
	display: grid;
	line-height: 1.05;
}

.sp-brand-text small {
	color: var(--sp-grey);
	font-size: 11px;
	font-weight: 700;
	margin-top: 4px;
}

.custom-logo-link img {
	max-width: 210px;
	max-height: 58px;
}

.sp-primary-nav {
	position: fixed;
	inset: 76px 0 auto 0;
	display: none;
	background: rgba(5, 5, 5, 0.98);
	border-bottom: 1px solid var(--sp-border);
	padding: 16px;
}

.sp-menu-open .sp-primary-nav {
	display: block;
}

.sp-menu,
.sp-footer-menu {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sp-menu a,
.sp-footer-menu a {
	display: block;
	padding: 10px 0;
	color: var(--sp-grey);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0;
}

.sp-menu a:hover,
.sp-menu a:focus,
.sp-footer-menu a:hover,
.sp-footer-menu a:focus {
	color: var(--sp-green);
}

.sp-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	border: 1px solid transparent;
	border-radius: 999px;
	padding: 12px 22px;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
	transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.sp-button:hover,
.sp-button:focus {
	transform: translateY(-2px);
}

.sp-button--green {
	background: var(--sp-green);
	color: var(--sp-black);
	box-shadow: 0 14px 28px rgba(139, 224, 0, 0.22);
}

.sp-button--green:hover,
.sp-button--green:focus {
	background: var(--sp-green-hover);
}

.sp-button--outline {
	border-color: rgba(139, 224, 0, 0.55);
	color: var(--sp-green);
	background: rgba(139, 224, 0, 0.04);
}

.sp-button--outline:hover,
.sp-button--outline:focus {
	border-color: var(--sp-green);
	background: var(--sp-green);
	color: var(--sp-black);
}

.sp-header-cta {
	display: none;
}

.sp-menu-toggle {
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--sp-border);
	border-radius: 8px;
	background: var(--sp-card);
	cursor: pointer;
}

.sp-menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 19px;
	height: 2px;
	background: var(--sp-white);
	margin: 2px 0;
}

.sp-hero {
	position: relative;
	min-height: 710px;
	display: flex;
	align-items: center;
	background:
		linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.76) 44%, rgba(5, 5, 5, 0.2) 100%),
		linear-gradient(180deg, rgba(5, 5, 5, 0.05) 0%, #050505 100%),
		var(--sp-hero-image),
		radial-gradient(circle at 80% 18%, rgba(139, 224, 0, 0.2), transparent 34%),
		#050505;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.sp-hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 120px;
	background: linear-gradient(180deg, transparent, var(--sp-black));
	pointer-events: none;
}

.sp-hero-inner {
	position: relative;
	z-index: 1;
	padding: 86px 0 118px;
}

.sp-kicker {
	margin: 0 0 12px;
	color: var(--sp-green);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
}

.sp-hero h1,
.sp-section-heading h2,
.sp-community-copy h2,
.sp-page-hero h1 {
	margin: 0;
	font-weight: 900;
	line-height: 0.9;
	text-transform: uppercase;
	letter-spacing: 0;
}

.sp-hero h1 {
	display: grid;
	font-size: clamp(58px, 16vw, 138px);
	max-width: 780px;
}

.sp-hero h1 .is-green {
	color: var(--sp-green);
	text-shadow: 0 0 30px rgba(139, 224, 0, 0.34);
}

.sp-hero-subtitle {
	max-width: 620px;
	margin: 22px 0 0;
	color: var(--sp-light);
	font-size: clamp(20px, 4vw, 34px);
	font-weight: 800;
	line-height: 1.15;
}

.sp-hero-actions {
	display: grid;
	gap: 12px;
	width: min(100%, 360px);
	margin-top: 34px;
}

.sp-info-bar {
	position: relative;
	z-index: 2;
	margin-top: -56px;
	padding-bottom: 56px;
}

.sp-info-grid {
	display: grid;
	gap: 12px;
}

.sp-info-card,
.sp-sport-card,
.sp-stats-grid > div,
.sp-post-card {
	border: 1px solid var(--sp-border);
	border-radius: 8px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)), var(--sp-card);
	box-shadow: var(--sp-shadow);
}

.sp-info-card {
	padding: 22px;
}

.sp-info-card span {
	display: block;
	color: var(--sp-green);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.sp-info-card strong {
	display: block;
	margin-top: 7px;
	color: var(--sp-white);
	font-size: 18px;
	line-height: 1.2;
}

.sp-info-card p {
	margin: 5px 0 0;
	color: var(--sp-grey);
}

.sp-info-card a {
	color: var(--sp-green);
	font-weight: 800;
}

.sp-section {
	padding: 78px 0;
}

.sp-sports-section {
	background: var(--sp-black);
}

.sp-section-heading {
	margin-bottom: 30px;
}

.sp-section-heading h2,
.sp-community-copy h2 {
	font-size: clamp(40px, 8vw, 76px);
}

.sp-sports-grid {
	display: grid;
	gap: 18px;
}

.sp-sport-card {
	overflow: hidden;
}

.sp-sport-image {
	position: relative;
	aspect-ratio: 16 / 10;
	background: #151515;
	overflow: hidden;
}

.sp-sport-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 240ms ease;
}

.sp-sport-card:hover .sp-sport-image img {
	transform: scale(1.05);
}

.sp-sport-content {
	position: relative;
	padding: 26px;
}

.sp-sport-icon {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	margin-bottom: 18px;
	border-radius: 8px;
	background: var(--sp-green);
	color: var(--sp-black);
	font-size: 14px;
	font-weight: 900;
}

.sp-sport-content h3 {
	margin: 0;
	font-size: 30px;
	line-height: 1;
	text-transform: uppercase;
}

.sp-sport-content p {
	margin: 14px 0 22px;
	color: var(--sp-grey);
}

.sp-community-section {
	background:
		linear-gradient(90deg, rgba(11, 11, 11, 0.98), rgba(11, 11, 11, 0.84)),
		radial-gradient(circle at 82% 44%, rgba(139, 224, 0, 0.18), transparent 36%),
		var(--sp-dark);
	padding: 84px 0;
	border-top: 1px solid var(--sp-border);
	border-bottom: 1px solid var(--sp-border);
}

.sp-community-grid {
	display: grid;
	gap: 34px;
}

.sp-community-copy p:not(.sp-kicker) {
	max-width: 560px;
	color: var(--sp-grey);
	font-size: 18px;
}

.sp-stats-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.sp-stats-grid > div {
	min-height: 142px;
	padding: 22px;
}

.sp-stats-grid strong,
.sp-stats-grid span {
	display: block;
}

.sp-stats-grid strong {
	color: var(--sp-green);
	font-size: clamp(36px, 9vw, 58px);
	line-height: 0.95;
	font-weight: 900;
}

.sp-stats-grid span {
	margin-top: 10px;
	color: var(--sp-light);
	font-weight: 900;
	text-transform: uppercase;
}

.sp-site-footer {
	background: #030303;
	border-top: 1px solid var(--sp-border);
	padding: 58px 0 88px;
}

.sp-footer-grid {
	display: grid;
	gap: 34px;
}

.sp-footer-brand p,
.sp-contact-list,
.sp-footer-bottom,
.sp-content,
.sp-entry-summary {
	color: var(--sp-grey);
}

.sp-footer-brand p {
	max-width: 360px;
}

.sp-footer-column h2 {
	margin: 0 0 14px;
	color: var(--sp-white);
	font-size: 15px;
	text-transform: uppercase;
}

.sp-footer-column .sp-menu {
	gap: 0;
}

.sp-contact-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sp-contact-list li + li {
	margin-top: 10px;
}

.sp-social-links {
	display: flex;
	gap: 10px;
}

.sp-social-links a {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--sp-border);
	border-radius: 8px;
	color: var(--sp-green);
	font-weight: 900;
}

.sp-footer-bottom {
	margin-top: 36px;
	padding-top: 20px;
	border-top: 1px solid var(--sp-border);
	font-size: 14px;
}

.sp-mobile-action-bar {
	position: fixed;
	z-index: 1001;
	right: 0;
	bottom: 0;
	left: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: #080808;
	border-top: 1px solid var(--sp-border);
	box-shadow: 0 -16px 34px rgba(0, 0, 0, 0.45);
}

.sp-mobile-action-bar a {
	display: grid;
	place-items: center;
	min-height: 62px;
	padding: 8px 5px;
	color: var(--sp-grey);
	font-size: 11px;
	font-weight: 900;
	text-align: center;
	text-transform: uppercase;
}

.sp-mobile-action-bar a.is-primary {
	background: var(--sp-green);
	color: var(--sp-black);
}

.sp-page-hero {
	padding: 92px 0 54px;
	background:
		linear-gradient(180deg, rgba(5, 5, 5, 0.3), var(--sp-black)),
		var(--sp-dark);
	border-bottom: 1px solid var(--sp-border);
}

.sp-page-hero h1 {
	font-size: clamp(42px, 9vw, 88px);
}

.sp-page-hero p {
	max-width: 680px;
	color: var(--sp-grey);
	font-size: 18px;
}

.sp-page-hero--center {
	min-height: 62vh;
	display: grid;
	place-items: center;
	text-align: center;
}

.sp-content {
	max-width: 820px;
}

.sp-content a {
	color: var(--sp-green);
	font-weight: 800;
}

.sp-featured-image {
	margin-bottom: 28px;
	overflow: hidden;
	border-radius: 8px;
}

.sp-post-list {
	display: grid;
	gap: 18px;
}

.sp-post-card {
	padding: 26px;
}

.sp-post-card h2 {
	margin: 0 0 8px;
	font-size: 30px;
	line-height: 1.1;
}

.sp-entry-meta {
	color: var(--sp-green);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

@media (min-width: 700px) {
	body {
		padding-bottom: 0;
	}

	.sp-hero-actions {
		display: flex;
		width: auto;
		flex-wrap: wrap;
	}

	.sp-info-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sp-sports-grid,
	.sp-footer-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.sp-footer-brand {
		grid-column: span 3;
	}

	.sp-mobile-action-bar {
		display: none;
	}
}

@media (min-width: 980px) {
	.sp-header-inner {
		min-height: 88px;
	}

	.sp-primary-nav {
		position: static;
		display: block;
		padding: 0;
		background: transparent;
		border: 0;
	}

	.sp-menu {
		flex-direction: row;
		align-items: center;
		gap: 26px;
	}

	.sp-header-cta {
		display: inline-flex;
	}

	.sp-menu-toggle {
		display: none;
	}

	.sp-hero {
		min-height: 760px;
	}

	.sp-info-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.sp-sports-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.sp-community-grid {
		grid-template-columns: minmax(0, 1fr) 520px;
		align-items: center;
	}

	.sp-footer-grid {
		grid-template-columns: 1.4fr 0.8fr 1fr 0.7fr;
	}

	.sp-footer-brand {
		grid-column: auto;
	}
}

@media (max-width: 420px) {
	.sp-container {
		width: min(100% - 24px, var(--sp-container));
	}

	.sp-brand-text span {
		font-size: 14px;
	}

	.sp-brand-text small {
		font-size: 10px;
	}

	.sp-hero {
		min-height: 650px;
	}

	.sp-info-bar {
		margin-top: -36px;
	}

	.sp-stats-grid {
		grid-template-columns: 1fr;
	}
}

.sp-contact-hero {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.82)),
		radial-gradient(circle at 82% 28%, rgba(139, 224, 0, 0.24), transparent 34%),
		var(--sp-black);
	border-bottom: 1px solid var(--sp-border);
}

.sp-contact-hero__inner {
	padding: 92px 0 76px;
}

.sp-contact-hero h1,
.sp-contact-section-heading h2 {
	margin: 0;
	color: var(--sp-white);
	font-size: clamp(44px, 10vw, 92px);
	font-weight: 900;
	line-height: 0.95;
	text-transform: uppercase;
	letter-spacing: 0;
}

.sp-contact-hero p:not(.sp-kicker) {
	max-width: 720px;
	margin: 18px 0 0;
	color: var(--sp-grey);
	font-size: clamp(18px, 3vw, 26px);
	font-weight: 800;
	line-height: 1.25;
}

.sp-contact-hero__actions {
	display: grid;
	gap: 12px;
	margin-top: 30px;
}

.sp-contact-section {
	padding: 62px 0;
	background: var(--sp-black);
}

.sp-contact-section--map,
.sp-contact-section--hours {
	background: var(--sp-dark);
	border-top: 1px solid var(--sp-border);
	border-bottom: 1px solid var(--sp-border);
}

.sp-contact-card-grid,
.sp-contact-pricing-grid,
.sp-contact-social-grid {
	display: grid;
	gap: 16px;
}

.sp-contact-card,
.sp-contact-pricing-card,
.sp-contact-hours-card,
.sp-contact-social-button {
	border: 1px solid var(--sp-border);
	border-radius: 8px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)), var(--sp-card);
	box-shadow: var(--sp-shadow);
}

.sp-contact-card,
.sp-contact-pricing-card,
.sp-contact-hours-card {
	padding: 24px;
}

.sp-contact-card__icon {
	position: relative;
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	margin-bottom: 18px;
	border-radius: 999px;
	background: rgba(139, 224, 0, 0.12);
	border: 1px solid rgba(139, 224, 0, 0.55);
	box-shadow: 0 0 28px rgba(139, 224, 0, 0.16);
}

.sp-contact-card__icon::before {
	content: "";
	width: 16px;
	height: 16px;
	border-radius: 999px;
	background: var(--sp-green);
	box-shadow: 0 0 18px rgba(139, 224, 0, 0.8);
}

.sp-contact-card span,
.sp-contact-social-button span,
.sp-contact-hours-card span {
	display: block;
	color: var(--sp-green);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
}

.sp-contact-card h2,
.sp-contact-pricing-card h3 {
	margin: 10px 0 0;
	color: var(--sp-white);
	font-size: 24px;
	line-height: 1.08;
	text-transform: uppercase;
}

.sp-contact-card p,
.sp-contact-rate p {
	margin: 12px 0 0;
	color: var(--sp-grey);
}

.sp-contact-card .sp-button {
	width: 100%;
	margin-top: 20px;
}

.sp-contact-section-heading {
	margin-bottom: 24px;
}

.sp-contact-section-heading h2 {
	font-size: clamp(34px, 7vw, 64px);
}

.sp-contact-map {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(139, 224, 0, 0.35);
	border-radius: 8px;
	background: var(--sp-card);
	box-shadow: var(--sp-shadow);
	aspect-ratio: 16 / 11;
}

.sp-contact-map iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	filter: grayscale(1) contrast(1.08);
}

.sp-contact-pricing-card {
	position: relative;
	overflow: hidden;
}

.sp-contact-pricing-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 4px;
	background: var(--sp-green);
}

.sp-contact-pricing-card--accent {
	background:
		linear-gradient(135deg, rgba(139, 224, 0, 0.16), rgba(255, 255, 255, 0.02)),
		var(--sp-card);
}

.sp-contact-rate {
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid var(--sp-border);
}

.sp-contact-rate strong {
	display: block;
	color: var(--sp-green);
	font-size: 15px;
	text-transform: uppercase;
}

.sp-contact-hours-grid {
	display: grid;
	gap: 18px;
	align-items: center;
}

.sp-contact-hours-card strong {
	display: block;
	margin-top: 8px;
	color: var(--sp-white);
	font-size: clamp(30px, 7vw, 58px);
	line-height: 1;
	text-transform: uppercase;
}

.sp-contact-social-button {
	display: block;
	padding: 22px;
	transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.sp-contact-social-button:hover,
.sp-contact-social-button:focus {
	transform: translateY(-2px);
	border-color: rgba(139, 224, 0, 0.7);
	background: rgba(139, 224, 0, 0.08);
}

.sp-contact-social-button strong {
	display: block;
	margin-top: 8px;
	color: var(--sp-white);
	font-size: 18px;
	line-height: 1.25;
}

@media (min-width: 700px) {
	.sp-contact-hero__actions {
		display: flex;
		flex-wrap: wrap;
	}

	.sp-contact-card-grid,
	.sp-contact-pricing-grid,
	.sp-contact-social-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.sp-contact-map {
		aspect-ratio: 16 / 7;
	}

	.sp-contact-hours-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 699px) {
	.sp-contact-hero__actions .sp-button,
	.sp-contact-social-button {
		width: 100%;
	}
}
