* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
	background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
	color: #f1f1f1;
	min-height: 100svh;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
}

/* Loader styles */
#loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #0f2027;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

.spinner {
	border: 6px solid rgba(255, 255, 255, 0.2);
	border-top: 6px solid #66ccff;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* Hide content until loaded */
.content {
	width: 600px;
	max-width: 90%;
	display: none;
}

.content.show {
	display: block;
	animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Container */
.container {
	margin: auto;
	/* max-width: 90%;
	width: 100%; */
	padding: 30px 20px;
	border-radius: 16px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
	background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
	background-size: 200% 200%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: default;
	animation: gradientShift 8s ease infinite;
}

.container:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 16px 30px rgba(0, 0, 0, 0.6);
}

@keyframes gradientShift {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

img {
	max-width: 200px;
	width: 100%;
	height: auto;
	margin-bottom: 20px;
	transition: transform 0.3s ease;
}

.container:hover img {
	transform: scale(1.05);
}

h1 {
	font-size: 1.8rem;
	margin-bottom: 10px;
	color: #ffffff;
}

p {
	font-size: 1rem;
	margin-bottom: 20px;
	color: #dcdcdc;
	line-height: 1.5;
}

.contact {
	margin-top: 15px;
	font-size: 0.95rem;
}

.contact a {
	color: #66ccff;
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact a:hover {
	color: #99ddff;
	text-decoration: underline;
}

/* Small screens */
@media (max-width: 480px) {
	h1 {
		font-size: 1.4rem;
	}

	p {
		font-size: 0.9rem;
	}
}
