* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: ui-monospace, "Cascadia Code", monospace;
}

html,
body,
#map {
  width: 100%;
  height: 100%;
  background: #050505;
  overflow: hidden;
}

body {
  opacity: 0;
  visibility: hidden;
}

body.loaded {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease-in;
}

#info {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.85);
  padding: 15px 25px;
  border-radius: 2px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 20px;
  backdrop-filter: blur(10px);
  border-left: 3px solid #ff4444;
  z-index: 1000;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

#info-flag {
  width: 42px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.5));
  flex-shrink: 0;
}

#info-content {
  display: flex;
  gap: 4px;
  flex-direction: column;
  align-items: flex-start;
}

#info-ip {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.1;
  user-select: all;
  -webkit-user-select: all;
}

#info-loc {
  color: #ff4444;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  user-select: all;
  -webkit-user-select: all;
}

.marker-pulse {
  background: #ff4444;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(255, 68, 68, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 68, 68, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 68, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0px rgba(255, 68, 68, 0);
  }
}

.leaflet-control-container {
  display: none;
}
