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

body {
	font-family: 'Courier New', Courier, monospace;
	background: #0a0a0a;
	color: #e0e0e0;
	line-height: 1.6;
	overflow-x: hidden;
}

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

header {
	padding: 60px 0;
	text-align: center;
	background: linear-gradient(45deg, #0a0a0a, #1a1a1a);
}

h1 {
	font-size: 4rem;
	font-weight: 700;
	margin-bottom: 20px;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
	background-size: 200% 200%;
	animation: gradient 3s ease infinite;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

.subtitle {
	font-size: 1.2rem;
	color: #888;
	margin-bottom: 30px;
}

.platforms {
	color: #666;
	font-size: 0.9rem;
}

main {
	padding: 40px 0;
}

.section {
	margin-bottom: 60px;
	padding: 30px;
	background: #111;
	border-radius: 8px;
	border: 1px solid #222;
}

.section h2 {
	color: #4ecdc4;
	font-size: 1.8rem;
	margin-bottom: 20px;
	border-bottom: 2px solid #333;
	padding-bottom: 10px;
}

.section h3 {
	color: #45b7d1;
	font-size: 1.3rem;
	margin: 25px 0 15px 0;
}

.section h4 {
	color: #ff6b6b;
	font-size: 1.1rem;
	margin: 20px 0 10px 0;
}

.tech-specs {
	display: grid;
	grid-template-columns: repeat(2, minmax(250px, 1fr));
	gap: 20px;
	margin-bottom: 20px;
}

.tech-item {
	background: #0f0f0f;
	padding: 15px;
	border-radius: 5px;
	border-left: 3px solid #4ecdc4;
}

.tech-item strong {
	color: #4ecdc4;
}

.lore {
	background: #0f0f0f;
	padding: 20px;
	border-radius: 5px;
	border-left: 3px solid #ff6b6b;
	color: #ccc;
}

.features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
}

.feature-card {
	background: #0f0f0f;
	padding: 20px;
	border-radius: 5px;
	border-top: 2px solid #45b7d1;
}

.feature-card h4 {
	color: #45b7d1;
	margin: 0 0 10px 0;
}

.creature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.creature-card {
	background: #0f0f0f;
	padding: 20px;
	border-radius: 5px;
	border: 1px solid #333;
	transition: border-color 0.3s ease;
}

.creature-card:hover {
	border-color: #ff6b6b;
}

.creature-card h4 {
	color: #ff6b6b;
	margin: 0 0 10px 0;
}

.pyreleus {
	background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
	border: 2px solid #ff6b6b;
	padding: 30px;
	border-radius: 10px;
	position: relative;
	overflow: hidden;
}

.pyreleus::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.1), transparent);
	animation: scan 3s infinite;
}

@keyframes scan {
	0% {
		left: -100%;
	}

	100% {
		left: 100%;
	}
}

.pyreleus h3 {
	color: #ff6b6b;
	font-size: 1.5rem;
	margin-bottom: 20px;
}

.pyreleus p {
	color: #ddd;
	line-height: 1.8;
	text-shadow: 0 0 5px rgba(255, 107, 107, 0.3);
}

.environments {
	background: #0a0a0a;
	border: 1px solid #333;
	padding: 20px;
	border-radius: 5px;
}

.environment-name {
	color: #4ecdc4;
	font-weight: 700;
	font-size: 1.2rem;
}

.greek-name {
	color: #888;
	font-style: italic;
}

footer {
	background: #111;
	padding: 30px 0;
	text-align: center;
	border-top: 1px solid #333;
	color: #666;
}

a:link {
  color: #06f;
  text-decoration: none;
}

a:visited {
  color: #648;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
	h1 {
		font-size: 2.5rem;
	}

	.tech-specs {
		grid-template-columns: 1fr;
	}

	.features {
		grid-template-columns: 1fr;
	}

	.creature-grid {
		grid-template-columns: 1fr;
	}
}
