.mp-required-card {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: min(360px, calc(100vw - 28px));
  padding: 16px;
  border: 1px solid rgba(215, 168, 79, 0.38);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(215, 168, 79, 0.16), rgba(21, 24, 26, 0.96) 42%),
    rgba(21, 24, 26, 0.98);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
  color: #f5f1e8;
}

.mp-required-card[hidden] {
  display: none;
}

.mp-required-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.mp-required-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 1rem;
  font-weight: 900;
}

.mp-required-card__icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: #d7a84f;
  color: #17120a;
  font-size: 0.72rem;
  font-weight: 1000;
}

.mp-required-card__close {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #f5f1e8;
  cursor: pointer;
}

.mp-required-card__body {
  margin: 0 0 14px;
  color: #cfc7bc;
  font-size: 0.9rem;
  line-height: 1.45;
}

.mp-required-card__actions {
  display: flex;
  gap: 10px;
}

.mp-required-card__primary,
.mp-required-card__secondary {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  font-weight: 900;
  cursor: pointer;
}

.mp-required-card__primary {
  flex: 1;
  border: none;
  background: #d7a84f;
  color: #17120a;
}

.mp-required-card__secondary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #f5f1e8;
}

@media (max-width: 720px) {
  .mp-required-card {
    right: 14px;
    bottom: 14px;
  }
}
