.axie-calculator {
  max-width: 600px;
  margin: auto;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.dark-mode {
  background: #1e1e1e;
  color: #eee;
}

h2, h3 {
  text-align: center;
  color: #F43676;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
}

input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}

button {
  background-color: #F43676;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 5px 0;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #c22c5e;
}

.form-actions {
  text-align: center;
}

.results p {
  margin: 10px 0;
}

.tooltip {
  cursor: pointer;
  border-radius: 50%;
  background: #F43676;
  color: white;
  display: inline-block;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-weight: bold;
  margin-left: 5px;
  position: relative;
}

.tooltip.active::after {
  content: attr(data-tooltip);
  position: absolute;
  background: #333;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.85em;
  white-space: nowrap;
  bottom: 125%;
  left: 0;
  z-index: 10;
  display: block;
}

ul {
  list-style-type: disc;
  margin-left: 20px;
}