body {
  font-family: Arial, sans-serif;
  text-align: center;
}

svg {
  width: 90%;
  max-width: 1000px;
  border: 1px solid #ccc;
}

/* Base country style */
.country {
  stroke: #333;
  stroke-width: 1;
  cursor: pointer;
  transition: 0.2s;
}

/* 4 color groups */
.group1 { fill: #ff6b6b; }
.group2 { fill: #4ecdc4; }
.group3 { fill: #ffe66d; }
.group4 { fill: #1a535c; }

/* Hover effect */
.country:hover {
  opacity: 0.7;
}

.country-box {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: center;
  background: #f5f5f5;
  cursor: pointer;
}

.score-box {
  position: fixed;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  font-family: sans-serif;
  z-index: 9999;
}

#footer-cred {
  font-size: 12px;
  margin-left: -36%;
}
