.gold-system-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.7rem;
  padding: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(19, 31, 44, 0.94), rgba(11, 19, 28, 0.96));
}

.gold-system-strip img {
  display: block;
  width: 100%;
  max-width: 40px;
  aspect-ratio: 1;
  justify-self: center;
  object-fit: contain;
}

.target-grid,
.stage-chart-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.target-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stage-chart-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.target-card,
.stage-chart-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(19, 31, 44, 0.94), rgba(11, 19, 28, 0.96));
  transition: transform 180ms ease, border-color 180ms ease;
}

.target-card:hover,
.stage-chart-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
}

.target-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.15rem;
}

.target-head,
.stage-chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.target-tag,
.stage-code-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.22rem 0.58rem;
  border-radius: 999px;
  font-size: 0.76rem;
}

.target-tag {
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.stage-code-pill {
  background: rgba(92, 144, 255, 0.14);
  color: #dce8ff;
  font-weight: 700;
}

.target-card h3,
.stage-chart-card h3 {
  margin: 0;
}

.target-card p,
.stage-chart-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.target-blocks {
  display: grid;
  gap: 0.72rem;
}

.target-block {
  padding: 0.78rem 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.target-block strong {
  display: block;
  font-size: 0.84rem;
}

.target-block p {
  margin-top: 0.5rem;
}

.stage-chart-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.15rem;
}

.stage-chart-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.stage-chart-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.2rem 0.56rem;
  border-radius: 999px;
  font-size: 0.76rem;
}

.stage-chart-tag.focus-gold {
  background: rgba(215, 186, 120, 0.16);
  color: #ffefc7;
}

.stage-chart-tag.focus-chest {
  background: rgba(88, 201, 223, 0.16);
  color: #ddfbff;
}

.stage-chart-tag.focus-material {
  background: rgba(134, 219, 163, 0.16);
  color: #e8fff0;
}

.stage-chart-tag.focus-progression {
  background: rgba(92, 144, 255, 0.14);
  color: #dce8ff;
}

.stage-chart-points {
  display: grid;
  gap: 0.52rem;
  margin: 0;
  padding-left: 1.1rem;
}

.stage-chart-points li {
  color: var(--muted);
  line-height: 1.56;
}

.stage-chart-note {
  font-size: 0.84rem;
}

.target-action,
.stage-chart-action {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  width: fit-content;
  padding: 0.58rem 0.92rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(92, 144, 255, 0.2), rgba(88, 201, 223, 0.14));
  color: #eff6ff;
  font-size: 0.84rem;
}

@media (max-width: 1180px) {
  .target-grid,
  .stage-chart-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .gold-system-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .gold-system-strip,
  .target-grid,
  .stage-chart-grid {
    grid-template-columns: 1fr;
  }
}
