/* App Store Showcase Styles */

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

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	color: #333;
	background: #f5f5f7;
	line-height: 1.6;
}

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

#inner {
	background: #ffffff;
	border-radius: 18px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

/* Header Styles */
#hd {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 60px 40px;
	text-align: center;
}

.header-content {
	max-width: 800px;
	margin: 0 auto;
}

#hd h1 {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 10px;
	letter-spacing: -0.5px;
}

#hd h2 {
	font-size: 24px;
	font-weight: 400;
	margin-bottom: 15px;
	opacity: 0.95;
}

.subtitle {
	font-size: 18px;
	margin-bottom: 30px;
	opacity: 0.9;
}

.contact-links {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.contact-links a {
	color: white;
	text-decoration: none;
	padding: 10px 20px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	transition: background 0.3s ease;
	font-weight: 500;
}

.contact-links a:hover {
	background: rgba(255, 255, 255, 0.3);
}

/* Main Content */
#bd {
	padding: 60px 40px;
}

.section-title {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 40px;
	text-align: center;
	color: #1d1d1f;
}

/* App Card Styles */
.apps-section {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.app-card {
	background: #fafafa;
	border-radius: 16px;
	padding: 40px;
	border: 1px solid #e5e5e7;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.app-header {
	display: flex;
	gap: 30px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.app-icon-container {
	flex-shrink: 0;
}

.app-icon {
	width: 120px;
	height: 120px;
	border-radius: 22px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	object-fit: cover;
}

.app-info {
	flex: 1;
	min-width: 250px;
}

.app-name {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 8px;
	color: #1d1d1f;
}

.app-tagline {
	font-size: 18px;
	color: #666;
	margin-bottom: 20px;
}

.app-links {
	margin-top: 15px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
}

.privacy-link {
	color: #007aff;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
}

.privacy-link:hover {
	text-decoration: underline;
}

.app-store-button {
	display: inline-block;
	background: #0f9d58;
	color: white;
	text-decoration: none;
	padding: 12px 24px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 16px;
	transition: background 0.3s ease, transform 0.2s ease;
	box-shadow: 0 2px 8px rgba(15, 157, 88, 0.3);
}

.app-store-button:hover {
	background: #0d7a47;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(15, 157, 88, 0.4);
}

.app-description {
	margin-bottom: 25px;
}

.app-description p {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
}

.app-features {
	margin-bottom: 30px;
}

.app-features h4 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 15px;
	color: #1d1d1f;
}

.app-features ul {
	list-style: none;
	padding-left: 0;
}

.app-features li {
	padding: 10px 0;
	padding-left: 25px;
	position: relative;
	font-size: 16px;
	color: #333;
}

.app-features li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #007aff;
	font-weight: bold;
	font-size: 18px;
}

.app-screenshots {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	margin-top: 30px;
}

.screenshot {
	max-width: 200px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.screenshot:hover {
	transform: scale(1.05);
}

/* Footer */
#ft {
	padding: 30px 40px;
	background: #f5f5f7;
	text-align: center;
	border-top: 1px solid #e5e5e7;
	color: #666;
}

#ft a {
	color: #007aff;
	text-decoration: none;
}

#ft a:hover {
	text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
	#hd {
		padding: 40px 20px;
	}

	#hd h1 {
		font-size: 36px;
	}

	#hd h2 {
		font-size: 20px;
	}

	#bd {
		padding: 40px 20px;
	}

	.app-card {
		padding: 25px;
	}

	.app-header {
		flex-direction: column;
		text-align: center;
	}

	.app-icon {
		margin: 0 auto;
	}

	.app-name {
		font-size: 28px;
	}

	.section-title {
		font-size: 28px;
	}
}
