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

body {
	font-family: 'Arial', sans-serif;
	background-color: #1a1a1a;
	color: white;
	line-height: 1.6;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header Styles */
.header {
	background-color: #1a1a1a;
	padding: 20px 0;
	border-bottom: 1px solid #333;
}

.header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
}

.logo-link {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: inherit;
}

.logo-image {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}

.logo-text {
	font-size: 18px;
	font-weight: bold;
}

.games-text {
	color: #ff00ff;
}

.nav {
	display: flex;
	gap: 30px;
}

.nav-link {
	color: white;
	text-decoration: none;
	font-size: 16px;
	transition: color 0.3s ease;
}

.nav-link:hover {
	color: #ff00ff;
}

.header-buttons {
	display: flex;
	gap: 15px;
}

/* Button Styles */
.btn {
	padding: 12px 24px;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
}

/* Ensure no underline on hover or visited states for links styled as buttons */
.btn:hover,
.btn:focus,
.btn:visited {
	text-decoration: none;
}

.btn-yellow {
	background: linear-gradient(135deg, #ffd700, #ffed4e);
	color: #333;
	box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-yellow:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-magenta {
	background: linear-gradient(135deg, #ff00ff, #cc00cc);
	color: white;
	box-shadow: 0 4px 15px rgba(255, 0, 255, 0.3);
}

.btn-magenta:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 0, 255, 0.4);
}

.btn-gray {
	background: #333;
	color: white;
	border: 1px solid #555;
}

.btn-gray:hover {
	background: #444;
}

.btn-footer {
	background: #333;
	color: white;
	border: 1px solid #555;
}

.btn-footer:hover {
	background: #444;
}

.play-icon {
	font-size: 12px;
}

/* Hero Section */
.hero {
	padding: 80px 0;
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: bold;
	line-height: 1.1;
	margin-bottom: 30px;
}

.bright-text {
	color: #ff00ff;
}

.chaos-cozy-text {
	color: white;
}

.fun-text {
	color: white;
}

.game-name {
	color: #ff00ff;
	font-size: 1em;
	font-weight: bold;
}

.hero-description {
	font-size: 18px;
	color: #ccc;
	margin-bottom: 40px;
	line-height: 1.6;
}

.hero-buttons {
	display: flex;
	gap: 20px;
}

/* Hero Image */
.hero-image {
	position: relative;
	height: 500px;
	border-radius: 12px;
	overflow: hidden;
}

.game-screenshot {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
}

/* Footer */
.footer {
	background-color: #1a1a1a;
	padding: 40px 0;
	border-top: 1px solid #333;
}

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

.footer-content p {
	color: #ccc;
	font-size: 14px;
	margin: 0;
}

.footer-link {
	color: #ff00ff;
	display: inline-block;
	font-size: 14px;
	margin-top: 10px;
	text-decoration: none;
}

.footer-link:hover {
	color: #ffd700;
	text-decoration: underline;
}

/* Mobile Navigation */
.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	color: white;
	font-size: 24px;
	cursor: pointer;
	padding: 8px;
}

.mobile-menu-toggle:hover {
	color: #ff00ff;
}

/* Responsive Design */
@media (max-width: 768px) {
	/* Mobile Header */
	.header .container {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		padding: 15px 20px;
	}

	.mobile-menu-toggle {
		display: block;
	}

	.nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #1a1a1a;
		flex-direction: column;
		padding: 20px;
		border-top: 1px solid #333;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	}

	.nav.active {
		display: flex;
	}

	.nav-link {
		padding: 15px 0;
		border-bottom: 1px solid #333;
		text-align: center;
		font-size: 18px;
	}

	.nav-link:last-child {
		border-bottom: none;
	}

	.header-buttons {
		display: none;
	}

	/* Mobile Hero */
	.hero {
		padding: 40px 0;
	}

	.hero-content {
		grid-template-columns: 1fr;
		gap: 30px;
		text-align: center;
	}

	.hero-title {
		font-size: 2.2rem;
		line-height: 1.2;
		margin-bottom: 20px;
	}

	.hero-description {
		font-size: 16px;
		margin-bottom: 30px;
		line-height: 1.5;
	}

	.hero-buttons {
		justify-content: center;
		flex-direction: column;
		gap: 15px;
		align-items: center;
	}

	.hero-buttons .btn {
		width: 100%;
		max-width: 280px;
		padding: 15px 24px;
		font-size: 16px;
	}

	.hero-image {
		height: 300px;
		margin-top: 20px;
	}

	/* Mobile Buttons */
	.btn {
		padding: 15px 24px;
		font-size: 16px;
		min-height: 48px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	/* Mobile Typography */
	body {
		font-size: 16px;
		line-height: 1.6;
	}

	.container {
		padding: 0 15px;
	}

	/* Mobile Footer */
	.footer {
		padding: 30px 0;
		text-align: center;
	}

	.footer-content p {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	/* Extra small mobile devices */
	.hero-title {
		font-size: 1.8rem;
	}

	.hero-description {
		font-size: 15px;
	}

	.hero-buttons .btn {
		padding: 12px 20px;
		font-size: 15px;
	}

	.container {
		padding: 0 10px;
	}

	.header .container {
		padding: 10px 15px;
	}

	.hero {
		padding: 30px 0;
	}

	.hero-image {
		height: 250px;
	}
}
