/* VARIABLES */
:root {
	--bg: #0f172a;
	--panel: #1e293b;
	--text: #e2e8f0;
	--accent: #38bdf8;
	--muted: #94a3b8;
	font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

body {
	min-height: 100vh;
	background: var(--bg);
	color: var(--text);
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
}

header {
	position: sticky;
	top: 0;
	z-index: 20;
	width: 100%;
	margin: 0 0;
	padding: 1.25rem;
	background: rgba(15, 23, 42, 0.8);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(226, 232, 240, 0.08);
	box-shadow: 0 12px 30px -18px rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

main {
	width: 100%;
}

header h1 {
	font-size: clamp(2rem, 3vw, 2.8rem);
	letter-spacing: -0.02em;
	margin-bottom: 0;
	white-space: nowrap;
}

.navbar {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.nav-btn {
	padding: 0.625rem 1.25rem;
	background: rgba(56, 189, 248, 0.1);
	border: 1px solid rgba(56, 189, 248, 0.3);
	border-radius: 8px;
	color: var(--text);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	transition: all 0.3s ease;
	cursor: pointer;
}

.nav-btn:hover {
	background: rgba(56, 189, 248, 0.2);
	border-color: var(--accent);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(56, 189, 248, 0.25);
}

.nav-btn:active {
	transform: translateY(0);
}

main section {
    padding: 1.5rem;
}

.hero {
	width: 100%;
	min-height: 85vh;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	padding: clamp(1.5rem, 4vw, 3rem);
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(80% 80% at 20% 20%, rgba(56, 189, 248, 0.12), transparent 40%),
				linear-gradient(135deg, rgba(15, 23, 42, 0.7), rgba(30, 41, 59, 0.45));
	backdrop-filter: blur(3px);
	z-index: 0;
}

.hero {
	background-image: url("./img/hero.png");
	background-size: cover;
}

.hero .content {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 1.25rem;
	max-width: 720px;
	margin: 0 auto;
	padding: clamp(1.5rem, 3vw, 2.5rem);
	background: rgba(15, 23, 42, 0.55);
	border: 1px solid rgba(226, 232, 240, 0.08);
	border-radius: 18px;
	box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.55);
}

.hero .content h1 {
	font-size: clamp(2.4rem, 4vw, 3.8rem);
	letter-spacing: -0.02em;
	text-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.hero .content p {
	color: var(--muted);
	line-height: 1.7;
}

.btn-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.6rem;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--accent), #60a5fa);
	color: #0b1021;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 15px 30px -10px rgba(56, 189, 248, 0.6);
	transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn-cta:hover {
	transform: translateY(-2px) scale(1.01);
	box-shadow: 0 20px 45px -12px rgba(56, 189, 248, 0.75);
	filter: brightness(1.02);
}

.btn-cta:active {
	transform: translateY(0);
	box-shadow: 0 10px 20px -10px rgba(56, 189, 248, 0.6);
}

.box {
    background: var(--panel);
	border: 1px solid rgba(226, 232, 240, 0.06);
	border-radius: 18px;
	padding: 1.5rem;
	box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.55);
}

.team {
	padding: 3rem clamp(1.5rem, 4vw, 3rem);
}

.team h2 {
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	margin-bottom: 2rem;
	text-align: center;
}

.team-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
}

.team-box {
	flex: 0 1 100%;
	max-width: 300px;
}

@media (min-width: 768px) {
	.team-box {
		flex: 0 0 calc(50% - 1rem);
		max-width: none;
	}
}

@media (min-width: 1200px) {
	.team-box {
		flex: 0 0 auto;
		min-width: 380px;
		max-width: 400px;
	}
}

.team-box {
	flex: 0 1 100%;
	max-width: 300px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1rem;
}

.team-box img {
	width: 140px;
	height: 140px;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 12px 30px -10px rgba(56, 189, 248, 0.45);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-box:hover img {
	transform: scale(1.05);
	box-shadow: 0 16px 40px -10px rgba(56, 189, 248, 0.6);
}

.team-box .content {
	display: grid;
	gap: 0.5rem;
}

.team-box h3 {
	font-size: 1.15rem;
	color: var(--text);
	font-weight: 600;
}

.team-box h4 {
	font-size: 0.9rem;
	color: var(--accent);
	font-weight: 500;
}

.team-box p {
	font-size: 0.9rem;
	color: var(--muted);
	line-height: 1.6;
}

/* GAME */
.game-info {
	padding: 3rem clamp(1.5rem, 4vw, 3rem);
	background: rgba(30, 41, 59, 0.3);
}

.game-info h2 {
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	margin-bottom: 2rem;
	text-align: center;
}

.info-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.info-box {
	flex: 0 1 100%;
	max-width: 350px;
	text-align: center;
}

@media (min-width: 768px) {
	.info-box {
		flex: 0 0 calc(50% - 1rem);
	}
}

@media (min-width: 1200px) {
	.info-box {
		flex: 0 0 calc(33.333% - 1.35rem);
	}
}

.info-box h3 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: var(--accent);
}

.info-box p {
	font-size: 0.95rem;
	color: var(--muted);
	line-height: 1.7;
}

/* FEATURES */
.features {
	padding: 3rem clamp(1.5rem, 4vw, 3rem);
}

.features h2 {
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	margin-bottom: 2rem;
	text-align: center;
}

.features-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
	max-width: 1400px;
	margin: 0 auto;
}

.feature-box {
	flex: 0 1 100%;
	max-width: 280px;
	text-align: center;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@media (min-width: 768px) {
	.feature-box {
		flex: 0 0 calc(50% - 0.75rem);
	}
}

@media (min-width: 1024px) {
	.feature-box {
		flex: 0 0 calc(25% - 1.125rem);
	}
}

.feature-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 30px 60px -15px rgba(56, 189, 248, 0.4);
}

.feature-box h3 {
	font-size: 1.1rem;
	margin-bottom: 0.75rem;
	color: var(--text);
}

.feature-box p {
	font-size: 0.85rem;
	color: var(--muted);
	line-height: 1.6;
}

/* TECH SPECS */
.tech-specs {
	padding: 3rem clamp(1.5rem, 4vw, 3rem);
	background: rgba(30, 41, 59, 0.3);
}

.tech-specs h2 {
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	margin-bottom: 2rem;
	text-align: center;
}

.specs-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
	max-width: 1000px;
	margin: 0 auto;
}

.spec-box {
	flex: 0 1 100%;
	max-width: 300px;
	text-align: center;
}

@media (min-width: 768px) {
	.spec-box {
		flex: 0 0 calc(50% - 1rem);
	}
}

@media (min-width: 1024px) {
	.spec-box {
		flex: 0 0 calc(33.333% - 1.35rem);
	}
}

.spec-box h3 {
	font-size: 1.2rem;
	margin-bottom: 1rem;
	color: var(--accent);
}

.spec-box p {
	font-size: 0.9rem;
	color: var(--muted);
	line-height: 1.8;
}

.spec-box strong {
	color: var(--text);
}

/* DOWNLOADS */
.download-selector {
	margin-top: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
}

.download-categories {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
}

.category-btn {
	padding: 0.75rem 1.25rem;
	border: 2px solid rgba(56, 189, 248, 0.3);
	border-radius: 0;
	background: var(--panel);
	color: var(--text);
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.25s ease;
	white-space: nowrap;
	margin-left: -2px;
}

.category-btn:first-child {
	border-top-left-radius: 12px;
	border-bottom-left-radius: 12px;
	margin-left: 0;
}

.category-btn:last-child {
	border-top-right-radius: 12px;
	border-bottom-right-radius: 12px;
}

.category-btn:hover {
	border-color: var(--accent);
	background: rgba(56, 189, 248, 0.1);
	z-index: 1;
	position: relative;
}

.category-btn.active {
	background: linear-gradient(135deg, var(--accent), #60a5fa);
	color: #0b1021;
	border-color: var(--accent);
	box-shadow: 0 10px 25px -8px rgba(56, 189, 248, 0.6);
	z-index: 2;
	position: relative;
}

.download-buttons {
	display: flex;
	justify-content: center;
	min-height: 60px;
}

.download-group {
	display: none;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
}

.download-group.active {
	display: flex;
}

.btn-download {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.6rem;
	border: none;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--accent), #60a5fa);
	color: #0b1021;
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	cursor: pointer;
	box-shadow: 0 15px 30px -10px rgba(56, 189, 248, 0.6);
	transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn-download:hover:not(.disabled) {
	transform: translateY(-2px) scale(1.01);
	box-shadow: 0 20px 45px -12px rgba(56, 189, 248, 0.75);
	filter: brightness(1.02);
}

.btn-download:active:not(.disabled) {
	transform: translateY(0);
	box-shadow: 0 10px 20px -10px rgba(56, 189, 248, 0.6);
}

.btn-download.disabled {
	background: var(--panel);
	color: var(--muted);
	box-shadow: none;
	cursor: not-allowed;
	opacity: 0.6;
}

footer {
	width: 100%;
	color: var(--muted);
	background-color: #202020ff;
	text-align: center;
	font-size: 0.95rem;
	padding: 1.25rem;
}
