* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: "Segoe UI", Arial, sans-serif;
	background: linear-gradient(135deg, #74ebd5, #acb6e5);
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

#container {
	width: min(800px, 100%);
	background: #fff;
	margin: 10px 0px;
	padding: 25px;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
	text-align: center;
	animation: fadeIn 0.6s ease;
}

h1 {
	font-size: 1.8rem;
	margin-bottom: 20px;
	color: #333;
}

.maps {
	margin-top: 20px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 10px;
}

.maps img {
	width: 100%;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	transition: transform .4s cubic-bezier(.23, 1, .32, 1), box-shadow .2s;
}

#imageModal {
	display: none;
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	background: rgba(25, 38, 60, 0.8);
	align-items: center;
	justify-content: center;
	z-index: 10000;
}

#closeModal {
	position: absolute;
	top: 30px;
	right: 40px;
	font-size: 2.5rem;
	color: #fff;
	background-color: none;
	cursor: pointer;
	border: none;
}

#modalImg {
	max-width: 90vw;
	max-height: 85vh;
	border-radius: 12px;
	box-shadow: 0 12px 64px rgba(0, 0, 0, 0.28);
	background: #fff;
}

#installBtn {
	background: #0069ed;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	transition: background 0.3s ease;
	display: none;
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	padding: 0.5rem 1rem;
	font-size: 1rem;
	z-index: 1000;
}

#installBtn:hover {
	background: #0053ba;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}