.np-home-stage .np-universe-card {
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 14px;
  min-height: 82px;
  padding: 11px 38px 11px 11px;
}

.np-home-stage .np-universe-card__visual {
  width: 100px;
  height: 58px;
  border-radius: 11px;
}

.np-home-stage .np-universe-card__visual--logo {
  display: grid;
  place-items: center;
  padding: 7px 9px;
  background:
    radial-gradient(circle at 35% 30%, color-mix(in srgb, var(--np-universe-accent) 25%, transparent), transparent 62%),
    #24262b;
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--np-universe-accent) 40%, transparent),
    0 0 18px color-mix(in srgb, var(--np-universe-accent) 11%, transparent);
}

.np-home-stage .np-universe-card__visual--logo::after {
  content: none;
}

.np-home-stage .np-universe-card__visual--logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.np-home-stage .np-universe-card__name {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.1;
}

.np-home-stage .np-universe-card__meta {
  margin-top: 6px;
  font-size: 10px;
}

.np-home-stage .np-universe-card__count::after {
  content: none;
}

.np-home-stage .np-universe-card__chevron {
  position: absolute;
  top: 50%;
  right: 14px;
  color: color-mix(in srgb, var(--np-universe-accent) 68%, #d7d3c8);
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  opacity: .78;
  transform: translateY(-52%);
  transition: color .16s ease, opacity .16s ease, transform .16s ease;
}

.np-home-stage .np-universe-card:hover .np-universe-card__chevron {
  color: color-mix(in srgb, var(--np-universe-accent) 82%, #fff4d7);
  opacity: 1;
  transform: translate(2px, -52%);
}

/* Universes selected on NPC Shop → Forside become the visual destination grid. */
.np-home-universe-group--featured .np-universe-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.np-home-universe-group--featured .np-universe-card {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  gap: 4px;
  min-height: 0;
  aspect-ratio: 1.28 / 1;
  padding: 10px 10px 27px;
  border-color: color-mix(in srgb, var(--np-universe-accent) 24%, #4b4942);
  border-radius: 14px;
  box-shadow:
    inset 0 -21px 0 var(--np-universe-accent),
    inset 0 0 0 1px rgba(255, 255, 255, .015);
}

.np-home-universe-group--featured .np-universe-card:hover {
  box-shadow:
    inset 0 -21px 0 var(--np-universe-accent),
    0 12px 26px rgba(0, 0, 0, .2),
    0 0 22px color-mix(in srgb, var(--np-universe-accent) 9%, transparent);
}

.np-home-universe-group--featured .np-universe-card__visual {
  flex: 1 1 auto;
  width: 100%;
  height: auto;
  min-height: 76px;
}

.np-home-universe-group--featured .np-universe-card__visual--logo {
  padding: 2px 4px;
  background: transparent;
  box-shadow: none;
}

.np-home-universe-group--featured .np-universe-card__content {
  width: 100%;
  text-align: center;
}

.np-home-universe-group--featured .np-universe-card--has-logo .np-universe-card__name {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.np-home-universe-group--featured .np-universe-card__meta {
  display: block;
  margin-top: 0;
  line-height: 1;
}

.np-home-universe-group--featured .np-universe-card__count {
  color: inherit;
  font-size: 9px;
  font-weight: 850;
  line-height: 1;
}

.np-home-universe-group--featured .np-universe-card__count-rail {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  place-items: center;
  height: 21px;
  background: transparent;
  color: var(--np-universe-rail-ink, #0a0b0d);
}

.np-home-universe-group--featured .np-universe-card__count-rail .np-universe-card__count {
  position: relative;
  z-index: 1;
}

.np-home-universe-group--featured .np-universe-card__chevron {
  display: none;
}

.np-home-universe-secondary .np-universe-card {
  grid-template-columns: 7px minmax(0, 1fr);
  gap: 11px;
  min-height: 64px;
  padding: 11px 36px 11px 14px;
}

.np-home-universe-secondary .np-universe-card__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--np-universe-accent);
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, .025),
    0 0 11px color-mix(in srgb, var(--np-universe-accent) 24%, transparent);
}

.np-home-universe-secondary .np-universe-card__name {
  font-size: clamp(14px, 1.05vw, 16px);
}

.np-home-universe-secondary .np-universe-card__meta {
  margin-top: 5px;
}

@media (max-width: 1100px) and (min-width: 861px) {
  .np-home-universe-group--featured .np-universe-card {
    aspect-ratio: 1.12 / 1;
    padding-inline: 8px;
  }
}

@media (max-width: 760px) {
  .np-home-universe-group--featured .np-universe-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .np-home-stage .np-universe-card {
    grid-template-columns: 100px minmax(0, 1fr);
    min-height: 82px;
  }

  .np-home-stage .np-universe-card__visual {
    width: 100px;
    height: 58px;
  }

  .np-home-universe-group--featured .np-universe-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .np-home-universe-group--featured .np-universe-card {
    aspect-ratio: 1.2 / 1;
    min-height: 0;
  }

  .np-home-universe-group--featured .np-universe-card__visual {
    width: 100%;
    height: auto;
    min-height: 72px;
  }

  .np-home-universe-secondary .np-universe-cards {
    grid-template-columns: 1fr;
  }

  .np-home-universe-secondary .np-universe-card {
    grid-template-columns: 7px minmax(0, 1fr);
    min-height: 62px;
  }
}
