.gp-progress {
  display:flex;
  justify-content:center;
  padding:60px 20px;
}

.gp-progress-card {
  max-width:700px;
  width:100%;
  padding:30px;
  border-radius:24px;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.22),
    rgba(255,255,255,0.08)
  );

  backdrop-filter: blur(18px);
  border:1px solid rgba(255,255,255,0.25);
  box-shadow:0 20px 50px rgba(0,0,0,.35);
}

.gp-progress-card h2 {
  color:#fff;
  text-align:center;
  margin-bottom:22px;
}

.gp-progress-list {
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.gp-progress-header {
  display:flex;
  justify-content:space-between;
  color:#fff;
  font-weight:700;
  margin-bottom:6px;
}

.gp-progress-bar {
  height:10px;
  border-radius:999px;
  background:rgba(255,255,255,.18);
  overflow:hidden;
}

.gp-progress-fill {
  height:100%;
  background:linear-gradient(90deg,#22c55e,#16a34a);
  box-shadow:0 0 10px rgba(34,197,94,.6);
}
/* =====================================================
   GP PROGRESS – DARK GLASS MATCH (FINAL)
===================================================== */

.gp-progress-card {
  background: linear-gradient(
    135deg,
    rgba(18,18,22,0.88),
    rgba(26,26,32,0.78)
  );

  backdrop-filter: blur(18px) saturate(110%);
  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 30px 90px rgba(0,0,0,0.85),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

/* Progress Bar kräftiger */
.gp-progress-fill {
  background: linear-gradient(
    90deg,
    #22c55e,
    #16a34a
  );
  box-shadow:
    0 0 14px rgba(34,197,94,.9),
    0 0 28px rgba(34,197,94,.6);
}
