.lpus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  padding: 2rem;
  background: #101622;
  border-radius: 1rem;
}

.lpus-card {
  background: #1c2333;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 1rem;
  padding: 1.5rem;
  color: #eee;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lpus-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
}

.lpus-desc {
  font-size: 0.85rem;
  color: #bbb;
  margin-bottom: 1rem;
  text-align: center;
}

.circular-chart {
  width: 100px;
  height: 100px;
  margin-bottom: 0.8rem;
}

.circle-bg {
  fill: none;
  stroke: #2e3a59;
  stroke-width: 3.8;
}

.circle {
  fill: none;
  stroke-width: 2.8;
  stroke: #9f7aea;
  stroke-linecap: round;
  transition: stroke-dasharray 0.4s ease-out;
}

.percentage {
  fill: #ffffff;
  font-size: 0.5rem;
  text-anchor: middle;
}

.details {
  font-size: 0.95rem;
  color: #f6ad55;
  font-weight: 600;
}

.lpus-chart {
  margin-top: 3rem;
  padding: 1rem 2rem;
  background: #1a2033;
  border-radius: 1rem;
}


.lpus-toggle {
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  background: #9f7aea;
  border: none;
  border-radius: 0.5rem;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.lpus-toggle:hover {
  background: #805ad5;
}

.lpus-extra {
  display: none;
  margin-top: 1rem;
  background: #272d45;
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  color: #ccc;
}

.lpus-extra.visible {
  display: block;
}

