body {
	margin: 0;
	padding: 0;
	font-family: 'Inter', sans-serif;
	background: linear-gradient(45deg,rgb(20, 226, 158), #53bf9b,rgb(70, 214, 202), #53bf9b);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	color: #333;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
}

@keyframes gradient {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

.loading {
	position: fixed;
	inset: 0;
	background: rgba(17, 24, 39, 0.9);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 50;
}

.indexup {
	position: relative;
	z-index: 1000;
	color: #eeeeee;
}

.loading-spinner {
	width: 4rem;
	height: 4rem;
	border: 4px solid #ffffff;
	border-top-color: #3b82f6;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

.pwa-prompt {
	position: fixed;
	bottom: 1rem;
	left: 1rem;
	right: 1rem;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	color: white;
	padding: 1rem;
	border-radius: 0.5rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	z-index: 2;
	animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
	from { transform: translateY(100px); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
	padding: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	z-index: 2;
}

.header img {
	height: 40px;
	border-radius: 10px;
	margin-right: 0.5rem;
}

.header h1 {
	font-size: 1.5rem;
	font-weight: bold;
	color: #ffffff;
}

.app-container {
	padding-top: 5rem;
	width: 90%;
	max-width: 1200px;
	margin: 20px auto;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

.app-card {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 10px;
	padding: 15px;
	width: 300px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	transition: transform 0.3s ease;
}

.app-card-content {
	display: flex;
	align-items: center;
	gap: 15px;
	width: 100%;
}

.app-card h2 {
	margin: 0;
	font-size: 1.5em;
	color: #2fca40;
	text-align: center;
	width: 100%;
}

.app-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 0.75em;
}

.app-info p {
	margin: 10px 0;
	color: #555;
	text-align: left;
	width: 100%;
}

.app-info .version {
	color: #888;
	text-align: left;
	width: 100%;
}

.app-icon img {
	width: 128px;
	height: 128px;
	border-radius: 10px;
	object-fit: cover;
}

.visit-btn {
	background: linear-gradient(90deg, #53bf9b, #2fca40);
	width: 100%;
	max-width: 500px;
	color: white;
	font-size: 0.8rem;
	font-weight: bold;
	padding: 0.6rem 2rem;
	border-radius: 0.5rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 15px rgba(59, 130, 246, 0.5);
	border: none;
	cursor: pointer;
}

.footer {
	position: fixed;
	bottom: 0;
	width: 100%;
	text-align: center;
	padding: 10px 0;
	background: rgba(255, 255, 255, 0.5);
	color: #fff;
	font-size: 1em;
}