/* Reset & Base */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

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

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

/* Header */
.header {
	background: transparent;
	padding: 20px 0;
	position: relative;
	z-index: 10;
}

.header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	height: 32px;
	width: auto;
}

.lang-switch {
	display: flex;
	gap: 8px;
}

.lang-btn {
	background: transparent;
	border: none;
	padding: 6px 12px;
	font-size: 14px;
	font-weight: 500;
	color: #999;
	cursor: pointer;
	transition: color 0.2s;
}

.lang-btn.active {
	color: #333;
	font-weight: 600;
}

.lang-btn:hover {
	color: #333;
}

/* Hero Section */
.hero {
	padding: 40px 0 80px;
	background: #ECEFF1;
}

.hero-content {
	text-align: center;
}

/* Carousel */
.carousel-container {
	margin: 60px auto;
	max-width: 1000px;
}

.carousel {
	position: relative;
	overflow: hidden;
}

.carousel-track {
	display: flex;
	transition: transform 0.5s ease-in-out;
}

.carousel-slide {
	min-width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 30px;
}

.carousel-slide img {
	max-width: 100%;
	height: auto;
	max-height: 600px;
	object-fit: contain;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Carousel Dots */
.carousel-dots {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 30px;
}

.carousel-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ccc;
	border: none;
	cursor: pointer;
	transition: all 0.3s;
	padding: 0;
}

.carousel-dot.active {
	background: #C17848;
	width: 10px;
	height: 10px;
}

.carousel-dot:hover {
	background: #999;
}

/* Download Button */
.download-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #2D2D2D;
	color: white;
	padding: 16px 32px;
	border-radius: 8px;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	margin-top: 30px;
	transition: background 0.2s, transform 0.2s;
}

.download-btn:hover {
	background: #1a1a1a;
	transform: translateY(-2px);
}

.download-btn svg {
	width: 20px;
	height: 20px;
}

/* Footer */
.footer {
	background: #ECEFF1;
	padding: 60px 0 40px;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.social-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: white;
	color: #333;
	padding: 12px 24px;
	border-radius: 24px;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	transition: background 0.2s, transform 0.2s;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.social-btn:hover {
	background: #f5f5f5;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.social-btn svg {
	width: 20px;
	height: 20px;
}

/* Responsive */
@media (max-width: 768px) {
	.logo {
		height: 24px;
	}

	.carousel-slide {
		padding: 25px;
	}

	.carousel-slide img {
		max-height: 500px;
	}

	.download-btn {
		padding: 14px 28px;
		font-size: 15px;
	}

	.social-links {
		flex-direction: column;
		align-items: center;
	}

	.social-btn {
		width: 100%;
		max-width: 300px;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.logo {
		height: 20px;
	}

	.carousel-slide {
		padding: 20px;
	}

	.carousel-slide img {
		max-height: 400px;
	}

	.carousel-dots {
		gap: 8px;
	}

	.carousel-dot {
		width: 6px;
		height: 6px;
	}

	.carousel-dot.active {
		width: 8px;
		height: 8px;
	}
}
