@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
	background: linear-gradient(135deg, #f8fafc, #e6eef9);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #111111;
}

main {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 10px;
	overflow-y: auto;
}

img {
	user-select: none;
	-webkit-user-drag: none;
	-moz-window-dragging: no-drag;
}

a {
	text-decoration: none;
}

.page-container {
	display: flex;
	height: 100vh;
}

.comingsoon-container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	padding: 20px;
}

.comingsoon-card {
	background: #ffffff;
	padding: 50px 60px;
	border-radius: 1rem;
	box-shadow: 0 6px 20px rgba(16, 24, 40, 0.1);
	text-align: center;
	max-width: 500px;
	width: 100%;
}

.comingsoon-card h1 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 10px;
}

.comingsoon-card p {
	font-size: 1.1rem;
	color: #475569;
}

.comingsoon-sub {
	margin-top: 25px;
	font-size: 0.95rem;
	color: #64748b;
}

.comingsoon-logo {
    width: 120px;
    height: auto;
    margin-bottom: 25px;
    user-select: none;
    -webkit-user-drag: none;
}

/* Loader */
.comingsoon-loader {
	display: flex;
	justify-content: center;
	margin: 25px 0;
	gap: 10px;
}

.comingsoon-loader span {
	width: 12px;
	height: 12px;
	background: linear-gradient(180deg, #06b6d4, #3b82f6);
	border-radius: 100%;
	animation: pulse 0.8s infinite ease-in-out alternate;
}

.comingsoon-loader span:nth-child(2) {
	animation-delay: 0.15s;
}

.comingsoon-loader span:nth-child(3) {
	animation-delay: 0.3s;
}

@keyframes pulse {
	from {
		transform: scale(0.6);
		opacity: 0.6;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}