:root {
	--primary-color: #000000;
	--secondary-color: #6366f1;
	--accent-color: #8b5cf6;
	--bg-color: #fafafa;
	--surface-color: #ffffff;
	--text-primary: #1a1a1a;
	--text-secondary: #6b7280;
	--border-color: #e5e7eb;
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background-color: var(--bg-color);
	color: var(--text-primary);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Header */
header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--surface-color);
	box-shadow: var(--shadow-sm);
	backdrop-filter: blur(10px);
	background-color: rgba(255, 255, 255, 0.95);
}

.navbar {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.navbar-brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	color: var(--text-primary);
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 600;
	font-size: 1.25rem;
	transition: var(--transition);
}

.navbar-brand:hover {
	opacity: 0.8;
}

.navbar-brand img {
	width: 40px;
	height: 40px;
	object-fit: contain;
	border-radius: 0.5rem;
}

/* Main Content */
main {
	max-width: 1200px;
	margin: 0 auto;
	padding: 3rem 2rem;
}

/* Game Section */
.game-section {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	margin-bottom: 4rem;
}

@media (min-width: 1024px) {
	.game-section {
		grid-template-columns: 1fr 1fr;
		align-items: start;
	}
}

.game-media {
	position: relative;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: var(--shadow-xl);
	background: var(--surface-color);
	transition: var(--transition);
}

.game-media:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-xl);
}

.game-poster {
	width: 100%;
	height: auto;
	display: block;
}

.game-video {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	background: #000;
}

.game-video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

.game-info {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.game-title {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--text-primary);
	line-height: 1.2;
	margin: 0;
}

@media (min-width: 768px) {
	.game-title {
		font-size: 3rem;
	}
}

.game-description {
	font-size: 1.125rem;
	color: var(--text-secondary);
	line-height: 1.7;
	margin: 0;
}

/* Store Links */
.store-links {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 1rem;
	margin-top: 1rem;
}

.store-link {
	display: block;
	transition: var(--transition);
	border-radius: 0.5rem;
	overflow: hidden;
}

.store-link:hover {
	transform: scale(1.05);
}

.store-link img {
	width: 100%;
	height: auto;
	display: block;
}

/* Footer Section */
.footer-section {
	border-top: 1px solid var(--border-color);
	padding-top: 3rem;
	margin-top: 4rem;
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: start;
}

@media (min-width: 768px) {
	.footer-content {
		grid-template-columns: auto 1fr 1fr;
		gap: 3rem;
	}
}

.footer-logo {
	display: flex;
	justify-content: center;
}

@media (min-width: 768px) {
	.footer-logo {
		justify-content: flex-start;
	}
}

.footer-logo img {
	width: 200px;
	height: auto;
	object-fit: contain;
	border-radius: 1rem;
}

.footer-social {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
}

@media (min-width: 768px) {
	.footer-social {
		align-items: flex-start;
	}
}

.social-links {
	display: flex;
	gap: 1rem;
	list-style: none;
}

.social-link {
	display: block;
	transition: var(--transition);
	border-radius: 0.5rem;
	overflow: hidden;
}

.social-link:hover {
	transform: scale(1.1);
}

.social-link img {
	width: 50px;
	height: auto;
	display: block;
}

.footer-contact {
	text-align: center;
}

@media (min-width: 768px) {
	.footer-contact {
		text-align: left;
	}
}

.contact-title {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.75rem;
}

.contact-item {
	margin-bottom: 1.5rem;
}

.contact-item:last-child {
	margin-bottom: 0;
}

.contact-link {
	color: var(--text-primary);
	text-decoration: none;
	font-size: 1rem;
	transition: var(--transition);
	display: inline-block;
}

.contact-link:hover {
	color: var(--secondary-color);
	text-decoration: underline;
}

/* Footer Copyright */
footer {
	background: var(--surface-color);
	border-top: 1px solid var(--border-color);
	padding: 2rem;
	text-align: center;
}

.copyright {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 0.875rem;
	color: var(--text-secondary);
	margin: 0;
}

/* Responsive adjustments */
@media (max-width: 767px) {
	main {
		padding: 2rem 1rem;
	}

	.navbar {
		padding: 1rem;
	}

	.game-title {
		font-size: 2rem;
	}

	.game-description {
		font-size: 1rem;
	}

	.store-links {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-logo img {
		width: 150px;
	}
}

/* Smooth scroll */
html {
	scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
	outline: 2px solid var(--secondary-color);
	outline-offset: 2px;
	border-radius: 0.25rem;
}
