* {
	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, #FFF5E6 0%, #FFE4B5 100%);
	min-height: 100vh;
	padding: 20px;
}

img{
	max-width: 100%;
}

.container {
	max-width: 480px;
	margin: 0 auto;
}

.logo {
	text-align: center;
	max-width: 220px;
	margin: 20px auto 30px auto;
}

.slider-container {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	max-width: 70%;
	margin: 0 auto 30px auto;
}

.slider {
	display: flex;
	transition: transform 0.5s ease;
}

.slide {
	min-width: 100%;
	height: auto;
}

.slide img {
	width: 100%;
	height: auto;
	display: block;
	border: 4px solid #373435;
	border-radius: 30px;
}

.content {
	background: white;
	border-radius: 20px;
	padding: 30px 25px;
	margin-bottom: 25px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.content h2 {
	color: #FF8C00;
	font-size: 24px;
	margin-bottom: 20px;
	text-align: center;
}

.content p {
	color: #333;
	font-size: 16px;
	line-height: 1.8;
}

.store-wrap {
	background: white;
	border-radius: 20px;
	padding: 30px 25px;
	margin-bottom: 25px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.store-buttons {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.store-title {
	color: #FF8C00;
	font-size: 24px;
	margin-bottom: 25px;
	text-align: center;
}

.store-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	background: #000;
	color: white;
	padding: 15px 25px;
	border-radius: 12px;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.store-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.store-btn img {
	width: 30px;
	height: 30px;
}

.store-btn span {
	font-size: 18px;
	font-weight: 600;
}

.video-section {
	background: white;
	border-radius: 20px;
	padding: 30px 25px;
	margin-bottom: 40px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.video-section h2 {
	color: #FF8C00;
	font-size: 24px;
	margin-bottom: 20px;
	text-align: center;
}

.video-container {
	position: relative;
	width: 100%;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.video-container video {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 15px;
}

footer {
	background: #000;
	border-radius: 20px;
	padding: 25px;
	text-align: center;
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

footer p {
	color: #eaeaea;
	font-size: 14px;
	margin-bottom: 10px;
}

footer p:nth-child(1){
	color: #f7a632;
}

footer p:nth-child(2){
	max-width: 80%;
	text-align: center;
	margin: 0 auto;
}

footer .copyright {
	color: #999;
	font-size: 12px;
	margin-top: 15px;
}

@keyframes fadeIn {
	from {
			opacity: 0;
			transform: translateY(20px);
	}
	to {
			opacity: 1;
			transform: translateY(0);
	}
}

.content, .store-buttons, footer {
	animation: fadeIn 0.8s ease forwards;
}

.store-buttons {
	animation-delay: 0.2s;
}

footer {
	animation-delay: 0.4s;
}