/* ---------- GLOBAL LAYOUT ---------- */
body {
  font-family: Arial, sans-serif;
  background: #fafafa;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 6px;
}

/* ---------- TEST TEXT ---------- */
.intro {
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 1.5;
  color: #333;
}

/* ---------- QUESTIONS ---------- */
.question {
  margin-bottom: 25px;
}

.question p {
  margin-bottom: 10px;
}

.question label {
  display: block;
  margin: 4px 0;
  cursor: pointer;
}

/* ---------- BUTTON ---------- */
button {
  margin-top: 20px;
  padding: 10px 18px;
  font-size: 14px;
  cursor: pointer;
}

/* ---------- RESULT TEXT ---------- */
#score {
  margin-top: 20px;
  font-weight: bold;
}

#result {
  margin-top: 30px;
  line-height: 1.5;
}

#result h3 {
  margin-bottom: 6px;
  margin-top: 18px;
}

/* ---------- PLANE ---------- */
.plane {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 50px auto;
  border: 1px solid #333;
  background: #fff;
}

/* ---------- AXES ---------- */
.axis.horizontal {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #999;
}

.axis.vertical {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 1px;
  background: #999;
}

/* ---------- GRID (5x5 visual only) ---------- */
.plane::before,
.plane::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.plane::before {
  background:
    linear-gradient(to right, rgba(0,0,0,0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.08) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* ---------- DOT ---------- */
.dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #c0392b;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

/* ---------- AXIS EXPLANATIONS ---------- */
.axis-hint {
  position: absolute;
  font-size: 11px;
  color: #555;
  opacity: 0.7;
  pointer-events: none;
  white-space: nowrap;
}

/* Agency axis */
.top-hint {
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
}

.bottom-hint {
  bottom: -38px;
  left: 50%;
  transform: translateX(-50%);
}

/* Abstraction axis */
.left-hint {
  left: -70px;
  top: 50%;
  transform: translateY(-50%);
}

.right-hint {
  right: -70px;
  top: 50%;
  transform: translateY(-50%);
}

.legend-static {
  margin-top: 40px;
  max-width: 700px;
  line-height: 1.5;
}

.legend-static h2 {
  margin-bottom: 16px;
}

.legend-static h3 {
  margin-top: 24px;
  margin-bottom: 8px;
}

.legend-static p {
  margin-bottom: 10px;
}
.content {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

.entry-list {
  list-style: none;
  padding: 0;
}

.entry-list li {
  margin: 10px 0;
}

.entry-list a {
  text-decoration: none;
  color: black;
}

.entry-list a:hover {
  opacity: 0.6;
}
