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

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	background: linear-gradient(135deg, #eacb66 0%, #a24b4b 100%);
	min-height: 100vh;
	padding: 2rem;
	color: #333;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

header {
	text-align: center;
	margin-bottom: 4rem;
	color: white;
}

header h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.subtitle {
	font-size: 1.2rem;
	opacity: 0.9;
}

.projects-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	margin-bottom: 4rem;
	justify-content: center;
}

.project-card {
	background: white;
	border-radius: 12px;
	padding: 2rem;
	text-decoration: none;
	color: inherit;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	position: relative;
	width: 300px;
}

.project-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.project-card.placeholder {
	border: 2px dashed #ccc;
	background: rgba(255, 255, 255, 0.5);
	cursor: default;
}

.project-card.placeholder:hover {
	transform: none;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
	text-align: center;
}

.project-card h2 {
	font-size: 1.5rem;
	margin-bottom: 0.75rem;
	color: #667eea;
}

.project-card p {
	color: #666;
	line-height: 1.6;
}

footer {
	text-align: center;
	color: white;
	opacity: 0.9;
	font-size: 0.95rem;
}

.author {
	font-weight: 700;
	background: linear-gradient(135deg, #ffd700, #ffed4e);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-size: 1.1em;
}

.author a {
	text-decoration: none;
	color: inherit;
}

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

	.projects-grid {
		flex-direction: column;
		align-items: center;
	}
}
