.mr-identidad-hub {
  margin: 0 0 1.15rem;
  display: grid;
  gap: 1rem;
}

.mr-identidad-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(240, 180, 41, .22);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(240, 180, 41, .10), rgba(15, 23, 42, .92));
  box-shadow: 0 14px 35px rgba(0,0,0,.16);
}

.mr-identidad-kicker {
  display: inline-block;
  margin-bottom: .25rem;
  font-size: .72rem;
  letter-spacing: .16em;
  font-weight: 800;
  color: var(--gold);
}

.mr-identidad-hero h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.mr-identidad-hero p {
  margin: .35rem 0 0;
  color: rgba(255,255,255,.72);
  max-width: 650px;
}

.mr-identidad-quick-actions,
.mr-identidad-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.mr-identidad-action,
.mr-identidad-footer-actions button,
.mr-identidad-footer-actions a,
.mr-identidad-panel-title button {
  appearance: none;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: inherit;
  text-decoration: none;
  border-radius: 10px;
  padding: .55rem .72rem;
  font: inherit;
  cursor: pointer;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.mr-identidad-action:hover,
.mr-identidad-footer-actions button:hover,
.mr-identidad-footer-actions a:hover,
.mr-identidad-panel-title button:hover {
  transform: translateY(-1px);
  border-color: rgba(240,180,41,.34);
  background: rgba(240,180,41,.09);
}

.mr-identidad-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
}

.mr-identidad-stat {
  display: flex;
  align-items: center;
  gap: .75rem;
  min-width: 0;
  padding: .9rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.035);
}

.mr-identidad-stat-icon {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(240,180,41,.10);
  font-size: 1.2rem;
}

.mr-identidad-stat-copy {
  min-width: 0;
  display: grid;
  gap: .08rem;
}

.mr-identidad-stat-copy span,
.mr-identidad-stat-copy small {
  color: rgba(255,255,255,.6);
  font-size: .75rem;
}

.mr-identidad-stat-copy strong {
  font-size: 1.02rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mr-identidad-lower {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}

.mr-identidad-panel {
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.03);
}

.mr-identidad-panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .8rem;
  margin-bottom: .8rem;
}

.mr-identidad-panel-title > div {
  display: flex;
  align-items: center;
  gap: .65rem;
}

.mr-identidad-panel-title > div > span {
  font-size: 1.2rem;
}

.mr-identidad-panel-title strong,
.mr-identidad-panel-title small {
  display: block;
}

.mr-identidad-panel-title small {
  margin-top: .12rem;
  color: rgba(255,255,255,.58);
  font-size: .75rem;
}

.mr-identidad-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem;
}

.mr-identidad-game {
  display: flex;
  align-items: center;
  gap: .6rem;
  min-width: 0;
  padding: .5rem;
  border-radius: 11px;
  background: rgba(255,255,255,.035);
  color: inherit;
  text-decoration: none;
}

.mr-identidad-game:hover {
  background: rgba(240,180,41,.08);
}

.mr-identidad-game img {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  object-fit: cover;
  border-radius: 9px;
  background: rgba(255,255,255,.05);
}

.mr-identidad-game span {
  min-width: 0;
  font-weight: 700;
  font-size: .86rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mr-identidad-empty,
.mr-identidad-loading {
  grid-column: 1 / -1;
  margin: 0;
  padding: .8rem 0;
  color: rgba(255,255,255,.58);
  font-size: .82rem;
}

.mr-identidad-footer-actions {
  padding-top: .1rem;
}

@media (max-width: 950px) {
  .mr-identidad-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mr-identidad-lower {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .mr-identidad-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .mr-identidad-grid {
    grid-template-columns: 1fr;
  }

  .mr-identidad-list {
    grid-template-columns: 1fr;
  }
}
