/* css/style.css */

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  max-width: 700px;
  margin: 40px auto;
  padding: 0 20px;
  line-height: 1.6;
  color: #222;
  background-color: #fafafa;
}

header {
  text-align: center;
  margin-bottom: 40px;
}

header h1 {
  font-size: 2.8rem;
  margin-bottom: 0;
  color: #2c3e50;
}

header p {
  font-size: 1.1rem;
  margin: 6px 0;
  color: #555;
}

a {
  color: #3498db;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

main h2, main h3 {
  color: #34495e;
  margin-top: 30px;
  margin-bottom: 10px;
}

ul {
  list-style: disc inside;
  margin-left: 0;
  padding-left: 0;
}

footer {
  margin-top: 60px;
  text-align: center;
  font-size: 0.9rem;
  color: #999;
  border-top: 1px solid #ddd;
  padding-top: 10px;
}

.hidden {
  display: none !important;
}
#badge-popup {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.badge-popup-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 80vw;
  max-height: 80vh;
  overflow: auto;
  text-align: center;
}
.badge-popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}