* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Consolas, monospace;
}

body {
  background: #000;
  color: #00ff88;
}

.container {
  max-width: 420px;
  margin: 80px auto;
  text-align: center;
}

h1 {
  font-size: 28px;
  color: #00ff88;
}

.tagline {
  font-size: 14px;
  color: #7fffd4;
  margin-bottom: 20px;
}

.tracker-box {
  border: 1px solid #00ff88;
  padding: 20px;
  border-radius: 8px;
  background: #020202;
}

input {
  width: 100%;
  padding: 12px;
  background: #000;
  border: 1px solid #00ff88;
  color: #00ff88;
  margin-bottom: 15px;
}

button {
  width: 100%;
  padding: 12px;
  background: #00ff88;
  color: #000;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.loading {
  display: none;
  margin-top: 15px;
  font-size: 13px;
  color: #00ffaa;
}

.loading span {
  display: block;
  animation: blink 1.2s infinite;
}

@keyframes blink {
  50% { opacity: 0.4; }
}

.result {
  display: none;
  margin-top: 15px; 
  border-top: 1px dashed #00ff88;
  padding-top: 15px;
}

.result h3 {
  margin-bottom: 10px;
}

.result ul {
  list-style: none;
  text-align: left;
}

.result li {
  font-size: 14px;
  margin-bottom: 5px;
}

.disclaimer {
  margin-top: 15px;
  font-size: 11px;
  color: #ffaa00;
}


.map-box {
  margin-top: 20px;
  border: 1px solid #00ff88;
  padding: 15px;
  border-radius: 10px;
  background: #010101;
  text-align: center;
}

.india-map {
  position: relative;
  width: 220px;
  height: 280px;
  margin: 0 auto;
  background: url("https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/Blank_map_of_India.svg/512px-Blank_map_of_India.svg.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: invert(1) hue-rotate(90deg);
}

.pulse {
  position: absolute;
  top: 55%;
  left: 48%;
  width: 14px;
  height: 14px;
  background: #00ff88;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,255,136,.7); }
  70% { box-shadow: 0 0 0 18px rgba(0,255,136,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,255,136,0); }
}

.scan-text {
  margin-top: 10px;
  font-size: 14px;
  color: #00ffaa;
  letter-spacing: 1px;
}

.try-btn {
  margin-top: 20px;
  width: 100%;
  padding: 14px;
  background: linear-gradient(90deg,#00ff88,#22c55e);
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

