:root {
	--bg-color: #050e05;
	--text-color: #edfaed;
	--accent-blue: #2186c8;
	--accent-yellow: #ffd040;
	--accent-red: #e1382b;
	--sport-green: #159f49;
	--glass-bg: rgba(5, 14, 5, 0.92);
	--glass-border: rgba(168, 255, 176, 0.12);
	--surface: rgba(255, 255, 255, 0.06);
	--surface-hover: rgba(255, 255, 255, 0.12);
	--surface-active: rgba(255, 255, 255, 0.16);
	--border: rgba(255, 255, 255, 0.08);
	--border-active: rgba(255, 255, 255, 0.25);
	--text: #e4e4e7;
	--text-dim: #8b8b96;
	--accent: #f0c040;
	--accent-glow: rgba(240, 192, 64, 0.15);
	--win: #4ade80;
	--draw: #fbbf24;
	--loss: #f87171;

	--font-primary: 'Montserrat', sans-serif;
	--font-secondary: 'Space Grotesk', sans-serif;

	--radius: 12px;
	--radius-sm: 8px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	font-family: var(--font-primary);
	background-color: var(--bg-color);
	color: var(--text-color);
	line-height: 1.6;
	overflow-x: hidden;
}

/* Utilities */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.text-center {
	text-align: center;
}

.mt-4 {
	margin-top: 2rem;
}

.text-uppercase {
	text-transform: uppercase;
}

.glass {
	background: var(--glass-bg);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid var(--glass-border);
	/* border-radius: 16px; */
	box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.text-gradient {
	background: linear-gradient(90deg,
			var(--accent-yellow) 0%,
			var(--accent-red) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.gold-text {
	color: var(--accent-yellow);
}

/* Scroll Progress */
.scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	width: 0%;
	height: 4px;
	background: linear-gradient(90deg,
			var(--accent-blue),
			var(--accent-yellow),
			var(--accent-red));
	z-index: 9999;
}

/* Navbar */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 70px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 4rem;
	z-index: 1000;
	border-bottom: 1px solid var(--glass-border);
	/* border-radius: 0 0 16px 16px; */
}

.navbar .logo {
	display: flex;
	flex-direction: row;
	height: 30px;
	align-items: center;
	justify-content: space-between;
}
.navbar .logo a {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.navbar .logo svg {
	display: flex;
	align-self: center;
	width: auto;
	height: 30px;
	margin-right: 5px;
}


.navbar .logo span {
	font-weight: 900;
	font-size: 1.5rem;
	letter-spacing: 2px;
	color: var(--accent-yellow);
}

.navbar a {
	text-decoration: none;
}

.navbar nav {
	display: flex;
	gap: 2rem;
}

.navbar nav a {
	color: var(--text-color);
	text-decoration: none;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: color 0.3s ease;
}

.navbar nav a:hover {
	color: var(--accent-yellow);
}

/* Hero Section */
.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: 25svh;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	overflow: hidden;
}

.hero-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 20%;
	filter: grayscale(80%) contrast(120%);
}

.overlay-gradient {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at center right,
			transparent 0%,
			var(--bg-color) 90%),
		linear-gradient(to top, var(--bg-color) 0%, transparent 20%);
}

.hero-content {
	position: relative;
	z-index: 2;
	width: 100%;
}

.hero-content a {
	text-decoration: none;
	color: var(--accent-yellow);
}

.card {
	display: block;
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	text-decoration: none;
	color: var(--accent-yellow);
}

.hero-text {
	max-width: 600px;
}

.hero-text .subtitle {
	font-family: var(--font-secondary);
	color: var(--accent-yellow);
	letter-spacing: 4px;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.hero-text .title {
	font-size: clamp(3rem, 8vw, 6rem);
	font-weight: 900;
	line-height: 1;
	margin-bottom: 1.5rem;
}

.hero-text .description {
	font-size: 1.2rem;
	color: #ccc;
	margin-bottom: 3rem;
}

.hero-text .description span {
	color: var(--accent-yellow);
	font-weight: 600;
}

.stats-grid {
	display: flex;
	gap: 1.5rem;
}

.stat-card {
	padding: 1.5rem;
	min-width: 130px;
	text-align: center;
	border-top: 2px solid var(--accent-yellow);
}

.stat-card h3 {
	font-size: 2.5rem;
	font-weight: 800;
	font-family: var(--font-secondary);
	line-height: 1;
	margin-bottom: 0.5rem;
	color: var(--text-color);
}

.stat-card p {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #aaa;
}

/* Scroll Indicator */
.scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	opacity: 0.6;
}

.mouse {
	width: 24px;
	height: 36px;
	border: 2px solid var(--text-color);
	border-radius: 12px;
	position: relative;
}

.mouse::after {
	content: '';
	position: absolute;
	top: 6px;
	left: 50%;
	transform: translateX(-50%);
	width: 4px;
	height: 6px;
	background: var(--accent-yellow);
	border-radius: 2px;
	animation: scrollAnim 1.5s infinite;
}

@keyframes scrollAnim {
	0% {
		transform: translate(-50%, 0);
		opacity: 1;
	}

	100% {
		transform: translate(-50%, 12px);
		opacity: 0;
	}
}

.scroll-indicator p {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 2px;
}

/* Generic Section Styles */
.section {
	padding: 8rem 0;
	position: relative;
}

.section-header {
	margin-bottom: 5rem;
}

.section-header.center {
	text-align: center;
}

.section-title {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 0.5rem;
	position: relative;
	display: inline-block;
}

.section-subtitle {
	font-family: var(--font-secondary);
	color: var(--accent-yellow);
	letter-spacing: 3px;
	text-transform: uppercase;
}

@media (max-width: 600px) {
	.navbar nav {
		display: none;
	}
}