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

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #333;
	background-image: url('images/Banner.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	position: relative;
}

.background-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.3);
	z-index: 0;
}

.container {
	max-width: 1200px;
	width: 100%;
	background: rgba(255, 255, 255, 0.75);
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
	padding: 60px 40px;
	animation: fadeIn 0.8s ease-in;
	position: relative;
	z-index: 1;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

header {
	text-align: center;
	margin-bottom: 50px;
}

.logo-image {
	max-width: 300px;
	height: auto;
	margin: 0 auto 20px;
	display: block;
}

.logo h1 {
	font-size: 3.5rem;
	font-weight: 700;
	color: #2c3e50;
	letter-spacing: 3px;
	margin-bottom: 10px;
}

.tagline {
	font-size: 1.1rem;
	color: #7f8c8d;
	font-weight: 300;
	letter-spacing: 2px;
	text-transform: uppercase;
}

main {
	max-width: 900px;
	margin: 0 auto;
}

.content h2 {
	font-size: 2.5rem;
	color: #2c3e50;
	text-align: center;
	margin-bottom: 20px;
}

.subtitle {
	text-align: center;
	font-size: 1.2rem;
	color: #7f8c8d;
	margin-bottom: 60px;
}

.social-section {
	text-align: center;
	padding: 40px;
	background: #f8f9fa;
	border-radius: 15px;
	margin-bottom: 40px;
}

.launch-text {
	font-size: 1.5rem;
	color: #2c3e50;
	font-weight: 600;
	margin-bottom: 30px;
}

.facebook-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 15px 40px;
	background: #2c3e50;
	color: white;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.3s ease, transform 0.2s ease;
}

.facebook-link:hover {
	background: #34495e;
	transform: scale(1.05);
}

.facebook-link:active {
	transform: scale(0.98);
}

.facebook-icon {
	width: 24px;
	height: 24px;
}

footer {
	text-align: center;
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid #ecf0f1;
	color: #95a5a6;
	font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
	.container {
		padding: 40px 25px;
	}

	.logo-image {
		max-width: 200px;
	}

	.content h2 {
		font-size: 2rem;
	}

	.subtitle {
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	.logo-image {
		max-width: 150px;
	}

	.tagline {
		font-size: 0.9rem;
	}

	.content h2 {
		font-size: 1.6rem;
	}

	.launch-text {
		font-size: 1.2rem;
	}

	.facebook-link {
		font-size: 1rem;
		padding: 12px 30px;
	}
}