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

:root {
	--primary-color: #2c3e50;
	--secondary-color: #3498db;
	--accent-color: #e74c3c;
	--light-bg: #ecf0f1;
	--card-bg: #ffffff;
	--text-dark: #2c3e50;
	--text-light: #7f8c8d;
	--shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	--shadow-hover: 0 12px 24px rgba(0, 0, 0, 0.15);
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
		Ubuntu, Cantarell, sans-serif;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	min-height: 100vh;
	color: var(--text-dark);
}

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

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

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

header .subtitle {
	font-size: 1.2rem;
	opacity: 0.95;
	font-weight: 300;
}

.apps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2rem;
	padding: 1rem 0;
}

.app-card {
	display: flex;
	flex-direction: column;
	background: var(--card-bg);
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: var(--shadow);
	text-decoration: none;
	color: inherit;
}

.app-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-hover);
}

.app-thumbnail {
	width: 100%;
	height: 200px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.app-thumbnail img,
.app-thumbnail svg {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.app-info {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.app-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--text-dark);
}

.app-description {
	font-size: 0.95rem;
	color: var(--text-light);
	margin-bottom: 1rem;
	flex-grow: 1;
}

.app-link {
	display: inline-block;
	margin-top: auto;
	padding: 0.75rem 1.5rem;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 500;
	transition: transform 0.2s ease;
	border: none;
	cursor: pointer;
	text-align: center;
}

.app-link:hover {
	transform: scale(1.05);
}

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

	.apps-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.container {
		padding: 1rem;
	}
}
