/*
background: #0a0f1e; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); border-radius: 1.5rem;
*/
.map-container {
	position: relative;
	width: 100;
	overflow: hidden;
}

.world-map {
	width: 100%;
	height: auto;
	display: block;
	opacity: 0.8;
}

.location-marker {
	position: absolute;
	width: 16px;
	height: 16px;
	transform: translate(-50%, -50%);
	cursor: pointer;
	z-index: 10;
}

.dot {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 8px;
	height: 8px;
	background-color: #0099de;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	box-shadow: 0 0 10px rgba(0, 153, 222, 0.5);
}

.pulse {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	border: 2px solid #0099de;
	border-radius: 50%;
	opacity: 0;
	animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
	0% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 0.5;
	}

	100% {
		transform: translate(-50%, -50%) scale(2.5);
		opacity: 0;
	}
}

.location-marker:hover .dot {
	background-color: white;
	transform: translate(-50%, -50%) scale(1.2);
}

.location-marker:hover .pulse {
	opacity: 1;
	animation: none;
	transform: translate(-50%, -50%) scale(2.5);
	border-color: #0099de;
}

.info-card {
	position: absolute;
	top: 2rem;
	right: 2rem;
	width: 280px;
	background: rgba(240, 237, 237, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 1rem;
	padding: 1.5rem;
	opacity: 0;
	transform: translateY(10px);
	pointer-events: none;
	transition: all 0.3s ease;
	z-index: 20;
}

.info-card.active {
	opacity: 1;
	transform: translateY(0);
}

.info-title {
	font-weight: 800;
	font-size: 1.25rem;
	color: #0f172a;
}

.info-subtitle {
	color: #0099de;
	font-weight: 700;
	font-size: 0.75rem;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.info-feature {
	font-size: 0.85rem;
	color: #475569;
	display: flex;
	align-items: center;
	margin-bottom: 0.5rem;
	font-weight: 500;
}