body {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	background: #f4f6f9;
	color: #333;
}

.container {
	max-width: 900px;
	margin: auto;
	padding: 40px 20px;
}

.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
}

.title {
	font-size: 32px;
	font-weight: 600;
}

.clock {
	font-size: 16px;
	color: #666;
}

.card {
	background: white;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	text-align: center;
}

.download-area {
	margin-top: 20px;
}

.download-btn {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	transition: transform .2s ease;
}

	.download-btn:hover {
		transform: scale(1.05);
	}

	.download-btn img {
		width: 80px;
		height: 80px;
	}

.download-text {
	margin-top: 10px;
	font-size: 14px;
	color: #555;
}
